Skip to content

Commit

Permalink
use same exception
Browse files Browse the repository at this point in the history
  • Loading branch information
mattisonchao committed Jan 14, 2025
1 parent 1f22fa6 commit 352ed4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void onError(Throwable ex) {
pendingWrites.size(),
completedException);
}
pendingWrites.forEach(f -> f.completeExceptionally(ex));
pendingWrites.forEach(f -> f.completeExceptionally(completedException));
pendingWrites.clear();
} finally {
statusLock.unlockWrite(stamp);
Expand Down

0 comments on commit 352ed4c

Please sign in to comment.