diff --git a/redisson/src/main/java/org/redisson/command/CommandAsyncService.java b/redisson/src/main/java/org/redisson/command/CommandAsyncService.java index a89956c08..3a80e2af4 100644 --- a/redisson/src/main/java/org/redisson/command/CommandAsyncService.java +++ b/redisson/src/main/java/org/redisson/command/CommandAsyncService.java @@ -539,7 +539,7 @@ public class CommandAsyncService implements CommandAsyncExecutor { if (details.getWriteFuture() != null && details.getWriteFuture().cancel(false)) { if (details.getException() == null) { details.setException(new RedisTimeoutException("Unable to send command! " - + "Node source: " + source + ", connection: " + details.getConnectionFuture().getNow().getChannel() + + "Node source: " + source + ", connection: " + details.getConnectionFuture().getNow() + ", command: " + command + ", command params: " + LogHelper.toString(details.getParams()) + " after " + connectionManager.getConfig().getRetryAttempts() + " retry attempts")); }