From 6b3993d1e2e52cb36a5820a3c16ac8c162418925 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Tue, 20 Jun 2023 10:40:24 +0300 Subject: [PATCH] exception message fixed --- redisson/src/main/java/org/redisson/command/RedisExecutor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) {