You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-messaging/src/main/java/org/springframework/messaging/handler/invocation/reactive/ChannelSendOperator.java
+4
Original file line number
Diff line number
Diff line change
@@ -281,6 +281,10 @@ public void request(long n) {
281
281
return;
282
282
}
283
283
synchronized (this) {
284
+
if (this.state == State.READY_TO_WRITE) {
285
+
s.request(n);
286
+
return;
287
+
}
284
288
if (this.writeSubscriber != null) {
285
289
if (this.state == State.EMITTING_CACHED_SIGNALS) {
0 commit comments