-
Notifications
You must be signed in to change notification settings - Fork 369
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The AbstractCloseable.doCloseImmediately()
race condition
#700
Comments
Not sure. Depends on when the session is considered "closed". The current code seems to assume the session is fully closed once all the listeners on the
However, |
BTW, and unrelated to this: do you have tests for shared SSH session usage? We had issue #527 a while back, and it looked to me as if a shared SSH session might get closed too early; c.f. #527 (comment) . |
Well, the
So, calling the It is risky to keep it like that. I guess the complexity of the logic is because there is that third Thanks for pinging me about that shared session problem! |
Set the state to "closed" before fulfilling the closeFuture.
Version
2.15.0
Bug description
The code there is like this:
So, we fulfill
CloseFuture
first, and then set the state toClosed
.This way
Closeable.close(Closeable closeable)
exits earlier than we mark thatCloseable
asClosed
.Actual behavior
In my case the unit test is failing sporadically for this:
Expected behavior
The
AbstractCloseable.doCloseImmediately()
has those expressions swapped:Relevant log output
Other information
No response
The text was updated successfully, but these errors were encountered: