Github user Randgalt commented on the issue:
https://github.com/apache/curator/pull/215
@srdo I've looked at this again more deeply and I stand by my original
comment. This code:
```java
boolean isInitialExecution = (event == null);
if (isInitialExecution) {
queueOperation(operationAndData);
return;
}
```
Breaks a vital contract. `queueOperation` will add the operation to
`backgroundOperations` which are handled by CuratorFrameworkImpl's
`executorService`. So, we cannot accept this PR. I'm going to close it unless
you can think of a way of solving the original problem differently. I'll look
at CURATOR-106 when I can to see if I can understand the issue.
---
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.
---