Github user revans2 commented on the issue:
https://github.com/apache/storm/pull/2216
```
diff --git a/storm-multilang/python/src/main/resources/resources/storm.py
b/storm-multilang/python/src/main/resources/resources/storm.py
index 9106390b4..224ed120b 100755
--- a/storm-multilang/python/src/main/resources/resources/storm.py
+++ b/storm-multilang/python/src/main/resources/resources/storm.py
@@ -109,7 +109,7 @@ def emitBolt(tup, stream=None, anchors = [],
directTask=None):
m = {"command": "emit"}
if stream is not None:
m["stream"] = stream
- m["anchors"] = map(lambda a: a.id, anchors)
+ m["anchors"] = [a.id for a in anchors]
if directTask is not None:
m["task"] = directTask
m["tuple"] = tup
```
Is what I did to port it to master for testing on master.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---