exception message fixed

pull/5139/head
Nikita Koksharov 2 years ago
parent ffafe51fa2
commit 6b3993d1e2

@ -339,7 +339,8 @@ public class RedisExecutor<V, R> {
if (!future.isSuccess()) { if (!future.isSuccess()) {
exception = new WriteRedisConnectionException( 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) ", command: " + LogHelper.toString(command, params)
+ " after " + attempt + " retry attempts", future.cause()); + " after " + attempt + " retry attempts", future.cause());
if (attempt == attempts) { if (attempt == attempts) {

Loading…
Cancel
Save