Github user redsanket commented on a diff in the pull request:
https://github.com/apache/storm/pull/1047#discussion_r50848126
--- Diff:
storm-core/src/clj/org/apache/storm/cluster_state/zookeeper_state_factory.clj
---
@@ -143,15 +144,15 @@
(stateChanged
[this client newState]
(.stateChanged listener client
newState)))]
- (zk/add-listener zk-reader curator-listener)))
+ (Zookeeper/addListener zk-reader curator-listener)))
(sync-path
[this path]
- (zk/sync-path zk-writer path))
+ (Zookeeper/syncPath zk-writer path))
(delete-node-blobstore
[this path nimbus-host-port-info]
- (zk/delete-node-blobstore zk-writer path nimbus-host-port-info))
+ (Zookeeper/deleteDodeBlobstore zk-writer path
nimbus-host-port-info))
--- End diff --
must be deleteNodeBlobstore instead of deleteDodeBlobstore "spelling"
---
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.
---