Github user kishorvpatil commented on a diff in the pull request:
https://github.com/apache/storm/pull/845#discussion_r43811863
--- Diff: storm-core/src/clj/backtype/storm/daemon/nimbus.clj ---
@@ -950,20 +1047,33 @@
TOPOLOGY-EVENTLOGGER-EXECUTORS (total-conf
TOPOLOGY-EVENTLOGGER-EXECUTORS)
TOPOLOGY-MAX-TASK-PARALLELISM (total-conf
TOPOLOGY-MAX-TASK-PARALLELISM)})))
+(defn blob-rm-key [blob-store key storm-cluster-state]
+ (try
+ (.deleteBlob blob-store key (get-nimbus-subject))
+ (if (instance? LocalFsBlobStore blob-store)
+ (.remove-blobstore-key! storm-cluster-state key))
+ (catch Exception e)))
--- End diff --
should not ignore exception. At least log it.
---
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.
---