You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're trying to set up a lock for our Zookeeper operations, but when we attempt to call the release function, the entire application simply hangs on the call to release (that is, it prints the 'releasing lock' line, but not the 'lock released' line).
I should mention that the onSuccess function _is_ running in the same thread as the acquire command - we initially tried to release the lock inside of a flatMap and received the error for trying to release from a thread that didn't own the lock.
We're trying to set up a lock for our Zookeeper operations, but when we attempt to call the release function, the entire application simply hangs on the call to release (that is, it prints the 'releasing lock' line, but not the 'lock released' line).
If we use an await on the future, the release does not hang and releases correctly.
The text was updated successfully, but these errors were encountered: