diff --git a/redisson/src/main/java/org/redisson/command/RedisExecutor.java b/redisson/src/main/java/org/redisson/command/RedisExecutor.java index 504526a11..6c9840832 100644 --- a/redisson/src/main/java/org/redisson/command/RedisExecutor.java +++ b/redisson/src/main/java/org/redisson/command/RedisExecutor.java @@ -204,7 +204,8 @@ public class RedisExecutor { } exception = new RedisTimeoutException("Command still hasn't been written into connection! " + - "Try to increase nettyThreads setting. Payload size in bytes: " + totalSize + "Check connection with Redis node: " + getNow(connectionFuture).getRedisClient().getAddr() + + " Try to increase nettyThreads setting. Payload size in bytes: " + totalSize + ". Node source: " + source + ", connection: " + getNow(connectionFuture) + ", command: " + LogHelper.toString(command, params) + " after " + attempt + " retry attempts");