Github user mxm commented on a diff in the pull request:
https://github.com/apache/flink/pull/1387#discussion_r45559955
--- Diff:
flink-contrib/flink-storm/src/main/java/org/apache/flink/storm/wrappers/WrapperSetupHelper.java
---
@@ -118,6 +119,11 @@ static synchronized TopologyContext
createTopologyContext(
// prefix "Source: " is inserted by Flink sources by
default -- need to get rid of it here
operatorName = operatorName.substring(8);
}
+ final int idx =
operatorName.indexOf(FlinkTopologyBuilder.token);
+ if (idx != -1) {
+ // in case of operator chaining Flink alters the name
-- need to get rir of it here
--- End diff --
Typo: "rid"
---
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.
---