You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ri...@apache.org on 2021/11/09 22:20:18 UTC

[geode] branch GEM-3421-Geode-for-Redis-String-TLS-Tests updated: Log the correct item

This is an automated email from the ASF dual-hosted git repository.

ringles pushed a commit to branch GEM-3421-Geode-for-Redis-String-TLS-Tests
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/GEM-3421-Geode-for-Redis-String-TLS-Tests by this push:
     new 356c9df  Log the correct item
356c9df is described below

commit 356c9df14a53926a4adb4244471a5a186e3b01b6
Author: Ray Ingles <ri...@vmware.com>
AuthorDate: Tue Nov 9 17:19:14 2021 -0500

    Log the correct item
---
 .../apache/geode/redis/internal/executor/cluster/ClusterExecutor.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/geode-for-redis/src/main/java/org/apache/geode/redis/internal/executor/cluster/ClusterExecutor.java b/geode-for-redis/src/main/java/org/apache/geode/redis/internal/executor/cluster/ClusterExecutor.java
index 4d7cf77..ff4f7ce 100644
--- a/geode-for-redis/src/main/java/org/apache/geode/redis/internal/executor/cluster/ClusterExecutor.java
+++ b/geode-for-redis/src/main/java/org/apache/geode/redis/internal/executor/cluster/ClusterExecutor.java
@@ -48,7 +48,6 @@ import org.apache.geode.redis.internal.executor.RedisResponse;
 import org.apache.geode.redis.internal.netty.Command;
 import org.apache.geode.redis.internal.netty.ExecutionHandlerContext;
 import org.apache.geode.redis.internal.parameters.RedisParametersMismatchException;
-import static org.apache.geode.redis.internal.netty.Coder.bytesToString;
 
 
 public class ClusterExecutor implements CommandExecutor {
@@ -61,7 +60,7 @@ public class ClusterExecutor implements CommandExecutor {
 
     List<byte[]> args = command.getProcessedCommand();
     byte[] subcommand = args.get(1);
-    logger.error("CLUSTER, arg is:" +  bytesToString(args));
+    logger.error("CLUSTER, arg is:" + bytesToString(subcommand));
 
     if (equalsIgnoreCaseBytes(subcommand, bINFO)) {
       checkNumArgs(command, subcommand, 2);