Hisoka-X commented on code in PR #9642:
URL: https://github.com/apache/seatunnel/pull/9642#discussion_r2246650602


##########
seatunnel-connectors-v2/connector-redis/src/main/java/org/apache/seatunnel/connectors/seatunnel/redis/client/RedisClusterClient.java:
##########
@@ -79,7 +79,7 @@ public List<Map<String, String>> batchGetHash(List<String> 
keys) {
         List<Map<String, String>> result = new ArrayList<>(keys.size());
         for (String key : keys) {
             Map<String, String> map = jedis.hgetAll(key);
-            map.put("hash_key", key);
+            map.put(redisParameters.getKeyFieldName(), key);

Review Comment:
   The key name be changed if user not configure `key_field_name`? Is this an 
incompatible behavior?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to