See gh-33891
This commit is contained in:
youable
2024-11-15 18:12:07 +09:00
committed by Stéphane Nicoll
parent cd60a0013b
commit 5494d78018
4 changed files with 8 additions and 8 deletions

View File

@@ -173,7 +173,7 @@ public class ChannelSendOperator<T> extends Mono<Void> implements Scannable {
requiredWriteSubscriber().onNext(item);
return;
}
//FIXME revisit in case of reentrant sync deadlock
// FIXME revisit in case of reentrant sync deadlock
synchronized (this) {
if (this.state == State.READY_TO_WRITE) {
requiredWriteSubscriber().onNext(item);