Github user arunmahadevan commented on a diff in the pull request: https://github.com/apache/storm/pull/2218#discussion_r131220681 --- Diff: storm-server/src/main/java/org/apache/storm/daemon/nimbus/Nimbus.java --- @@ -2363,7 +2363,7 @@ private CommonTopoInfo getCommonTopoInfo(String topoId, String operation) throws ret.launchTimeSecs = 0; } ret.assignment = state.assignmentInfo(topoId, null); - ret.beats = Utils.OR(heartbeatsCache.get().get(topoId), Collections.emptyMap()); + ret.beats = Utils.<Map<List<Integer>, Map<String, Object>>>OR(heartbeatsCache.get().get(topoId), Collections.emptyMap()); --- End diff -- Yes thanks, after upgrading the java 8 to the latest release it appears to work. Removed the type hint.
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---