Skip to content

Commit

Permalink
Merge branch '0.8.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Maldini committed May 14, 2019
2 parents 35052c7 + d7267e1 commit 1e08b10
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/reactor/netty/channel/MonoSendMany.java
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,10 @@ void cleanup() {
.removeListener(this);

Context context = actual.currentContext();
Queue<I> queue = this.queue;
if (queue == null) {
return;
}
while (!queue.isEmpty()) {
I sourceMessage = queue.poll();
if (sourceMessage != null) {
Expand Down

0 comments on commit 1e08b10

Please sign in to comment.