From bddd0db945baf4752c7cae9cf707fcd1616db38d Mon Sep 17 00:00:00 2001 From: Sanket Date: Mon, 25 Jan 2016 10:37:19 -0600 Subject: [PATCH] fixing sporadic nimbus log failure and topology visualization --- storm-core/src/clj/org/apache/storm/daemon/nimbus.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storm-core/src/clj/org/apache/storm/daemon/nimbus.clj b/storm-core/src/clj/org/apache/storm/daemon/nimbus.clj index e3bdd5f895b..587da65e1de 100644 --- a/storm-core/src/clj/org/apache/storm/daemon/nimbus.clj +++ b/storm-core/src/clj/org/apache/storm/daemon/nimbus.clj @@ -1768,7 +1768,7 @@ (let [topology-conf (try-read-storm-conf conf id (:blob-store nimbus)) storm-name (topology-conf TOPOLOGY-NAME)] (check-authorization! nimbus storm-name topology-conf "getTopology") - (system-topology! topology-conf (try-read-storm-topology conf id)))) + (system-topology! topology-conf (try-read-storm-topology id (:blob-store nimbus))))) (^StormTopology getUserTopology [this ^String id] (mark! nimbus:num-getUserTopology-calls)