lukecwik commented on a change in pull request #11546:
URL: https://github.com/apache/beam/pull/11546#discussion_r416284576
##########
File path: sdks/python/apache_beam/runners/worker/operations.py
##########
@@ -724,6 +724,8 @@ def pcollection_count_monitoring_infos(self,
tag_to_pcollection_id):
if self.tagged_receivers:
for tag, receiver in self.tagged_receivers.items():
+ if str(tag) not in tag_to_pcollection_id:
Review comment:
We should be able to drop the if pcollection_id check below
##########
File path: sdks/python/apache_beam/runners/worker/operations.py
##########
@@ -724,6 +724,8 @@ def pcollection_count_monitoring_infos(self,
tag_to_pcollection_id):
if self.tagged_receivers:
for tag, receiver in self.tagged_receivers.items():
+ if str(tag) not in tag_to_pcollection_id:
Review comment:
We should be able to drop the `if pcollection_id` check below
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]