-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
[guava] JobListenableFuture.isCancelled() throws if future is completed exceptionally #2421
Comments
vadimsemenov
added a commit
to vadimsemenov/kotlinx.coroutines
that referenced
this issue
Dec 1, 2020
This properly handles ExecutionException that can be thrown from getUninterruptibly. Fixed Kotlin#2421.
vadimsemenov
added a commit
to vadimsemenov/kotlinx.coroutines
that referenced
this issue
Jan 26, 2021
This properly handles ExecutionException that can be thrown from getUninterruptibly. Fixed Kotlin#2421.
qwwdfsad
pushed a commit
that referenced
this issue
Jan 27, 2021
This properly handles ExecutionException that can be thrown from getUninterruptibly. Fixed #2421.
qwwdfsad
added a commit
that referenced
this issue
Jan 27, 2021
* Fix toString representation of JobListenableFuture * Do not throw from JobListenableFuture.isCancelled. This properly handles ExecutionException that can be thrown from getUninterruptibly. Co-authored-by: Vadim Semenov <vadim.pillarbox@gmail.com> Fixes #2421
This was referenced Mar 8, 2021
Closed
Merged
This was referenced Mar 15, 2021
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The bug was introduced in #2222
Uninteraptables.getUninterruptibly(future)
throwsExecutionException
if thefuture
is completed exceptionally.The text was updated successfully, but these errors were encountered: