Skip to content

Commit

Permalink
Swallow Exceptions when receiver.close()
Browse files Browse the repository at this point in the history
  • Loading branch information
chinghongfang committed Aug 22, 2022
1 parent 2deec7d commit 2dae423
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ public boolean closed() {
public void close() {
closed.set(true);
waitForDone();
producerReceiver.close();
consumerReceiver.close();
Utils.packException(producerReceiver::close);
Utils.packException(consumerReceiver::close);
}
};
}
Expand Down

0 comments on commit 2dae423

Please sign in to comment.