|
|
|
@ -754,7 +754,7 @@ public class CommandAsyncService implements CommandAsyncExecutor {
|
|
|
|
|
int count = details.getAttempt() + 1;
|
|
|
|
|
if (log.isDebugEnabled()) {
|
|
|
|
|
log.debug("attempt {} for command {} and params {}",
|
|
|
|
|
count, details.getCommand(), Arrays.toString(details.getParams()));
|
|
|
|
|
count, details.getCommand(), LogHelper.toString(details.getParams()));
|
|
|
|
|
}
|
|
|
|
|
details.removeMainPromiseListener();
|
|
|
|
|
async(details.isReadOnlyMode(), details.getSource(), details.getCodec(), details.getCommand(), details.getParams(), details.getMainPromise(), count, ignoreRedirect, connFuture);
|
|
|
|
@ -973,7 +973,7 @@ public class CommandAsyncService implements CommandAsyncExecutor {
|
|
|
|
|
|
|
|
|
|
if (log.isDebugEnabled()) {
|
|
|
|
|
log.debug("connection released for command {} and params {} from slot {} using connection {}",
|
|
|
|
|
details.getCommand(), Arrays.toString(details.getParams()), details.getSource(), connection);
|
|
|
|
|
details.getCommand(), LogHelper.toString(details.getParams()), details.getSource(), connection);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
@ -1207,7 +1207,7 @@ public class CommandAsyncService implements CommandAsyncExecutor {
|
|
|
|
|
} else {
|
|
|
|
|
if (log.isDebugEnabled()) {
|
|
|
|
|
log.debug("acquired connection for command {} and params {} from slot {} using node {}... {}",
|
|
|
|
|
details.getCommand(), Arrays.toString(details.getParams()), details.getSource(), connection.getRedisClient().getAddr(), connection);
|
|
|
|
|
details.getCommand(), LogHelper.toString(details.getParams()), details.getSource(), connection.getRedisClient().getAddr(), connection);
|
|
|
|
|
}
|
|
|
|
|
ChannelFuture future = connection.send(new CommandData<V, R>(details.getAttemptPromise(), details.getCodec(), details.getCommand(), details.getParams()));
|
|
|
|
|
details.setWriteFuture(future);
|
|
|
|
|