Skip to content

Commit

Permalink
Don't throw if the promise got completed in the meanwhile (#1580)
Browse files Browse the repository at this point in the history
  • Loading branch information
janory committed Feb 21, 2022
1 parent f0adad8 commit 21b29da
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -172,7 +172,7 @@ private final class AkkaNettyGrpcClientGraphStage[I, O](
call = null
}
if (!matVal.isCompleted) {
matVal.failure(new AbruptStageTerminationException(this))
matVal.tryFailure(new AbruptStageTerminationException(this))
}
}

Expand Down

0 comments on commit 21b29da

Please sign in to comment.