Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Oleh Dokuka <oleh.dokuka@icloud.com>
  • Loading branch information
OlegDokuka committed Mar 30, 2023
1 parent 5050581 commit 5129c6a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions rsocket-transport-netty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,8 @@ jar {
}
}

test {
minHeapSize = "512m"
}

description = 'Reactor Netty RSocket transport implementations (TCP, Websocket)'
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ final void startReceiver(CoreSubscriber<? super Object> s) {

s.onSubscribe(this);
} else {
if (inboundDone && getPending() == 0) {
if ((inboundDone && getPending() == 0) || isCancelled()) {
if (inboundError != null) {
Operators.error(s, inboundError);
return;
Expand Down

0 comments on commit 5129c6a

Please sign in to comment.