Skip to content

Commit

Permalink
fix: Deadlock with IDEA EAP 2023-3 EAP
Browse files Browse the repository at this point in the history
Fixes #1192

Signed-off-by: azerr <[email protected]>
  • Loading branch information
angelozerr committed Oct 5, 2023
1 parent 643d2cf commit 81d8c36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private void bind(CancellablePromise<ResultOrError<R>> promise) {
promise.onError(ex -> {
if (ex instanceof ProcessCanceledException || ex instanceof CancellationException) {
// Case 2: cancel the completable future
this.cancel(true);
super.cancel(true);
} else {
// Other case..., mark the completable future as error
this.completeExceptionally(ex);
Expand Down

0 comments on commit 81d8c36

Please sign in to comment.