Description
When using a TreeCache with just a single root node (e.g. maxDepth = 0), if I create the node, then delete it, and then repeat, it fails to send the proper events to the registered TreeCacheListener. Instead of an event sequence like so:
NODE_ADDED
NODE_REMOVED
NODE_ADDED
NODE_REMOVED
it instead sent these events:
NODE_ADDED
NODE_REMOVED
NODE_UPDATED
Attachments
Issue Links
- is duplicated by
-
CURATOR-182 TreeCache breaks when root node is removed
- Closed