diff --git a/redisson/src/main/java/org/redisson/command/RedisExecutor.java b/redisson/src/main/java/org/redisson/command/RedisExecutor.java index 8f7e543a7..8522abbf4 100644 --- a/redisson/src/main/java/org/redisson/command/RedisExecutor.java +++ b/redisson/src/main/java/org/redisson/command/RedisExecutor.java @@ -339,7 +339,8 @@ public class RedisExecutor { if (!future.isSuccess()) { exception = new WriteRedisConnectionException( - "Unable to write command into connection! Increase connection pool size. Node source: " + source + ", connection: " + connection + + "Unable to write command into connection! Increase nettyThreads setting. Node source: " + + source + ", connection: " + connection + ", command: " + LogHelper.toString(command, params) + " after " + attempt + " retry attempts", future.cause()); if (attempt == attempts) {