We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df18ab0 commit f84d181Copy full SHA for f84d181
src/clj/backtype/storm/daemon/nimbus.clj
@@ -794,8 +794,10 @@
794
(let [storm-cluster-state (:storm-cluster-state nimbus)
795
assigned (assigned-slots storm-cluster-state)
796
supervisor-infos (all-supervisor-info storm-cluster-state)
797
+ ;; TODO: need to get the port info about supervisors...
798
+ ;; in standalone just look at metadata, otherwise just say N/A?
799
supervisor-summaries (dofor [[id info] supervisor-infos]
- (let [ports (set (:worker-ports info))
800
+ (let [ports (set (:meta info))
801
]
802
(SupervisorSummary. (:hostname info)
803
(:uptime-secs info)
0 commit comments