Github user madrob commented on a diff in the pull request:
https://github.com/apache/curator/pull/242#discussion_r155074746
--- Diff:
curator-framework/src/main/java/org/apache/curator/framework/imps/OperationAndData.java
---
@@ -115,6 +115,11 @@ BackgroundCallback getCallback()
return operation;
}
+ void clearSleep()
+ {
+ sleepUntilTimeMs.set(0);
--- End diff --
I think this should be set to the time to current time (equivalent to
`sleepFor(0)`), rather than blowing it away and setting to zero.
---