[#1448] Don't print failure if VoidChannelPromise is used
This commit is contained in:
parent
6a9f965f9b
commit
cce74efded
@ -220,7 +220,7 @@ final class ChannelOutboundBuffer {
|
||||
}
|
||||
|
||||
do {
|
||||
if (!currentPromise.tryFailure(cause)) {
|
||||
if (!(currentPromise instanceof VoidChannelPromise) && !currentPromise.tryFailure(cause)) {
|
||||
logger.warn("Promise done already:", cause);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user