Fix typo in log message

Motivation:

We had a typo in the log message.

Modifications:

Remove extra "s" in log message.

Result:

Correct spelling in log message.
This commit is contained in:
Norman Maurer 2016-06-11 20:16:00 +02:00
parent 418550914a
commit 8f3a5e5b18

View File

@ -689,7 +689,7 @@ public final class ChannelOutboundBuffer {
logger.warn("Failed to mark a promise as failure because it has succeeded already: {}", promise, cause);
} else {
logger.warn(
"Failed to mark a promise as failure because it hass failed already: {}, unnotified cause {}",
"Failed to mark a promise as failure because it has failed already: {}, unnotified cause {}",
promise, ThrowableUtils.stackTraceToString(err), cause);
}
}