Skip to content

Commit f021c08

Browse files
committed
disable FT.PROFILE change for Redis 8
1 parent 968d983 commit f021c08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/redis/clients/jedis/CommandObjects.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4518,8 +4518,8 @@ public Map.Entry<T, ProfilingInfo> build(Object data) {
45184518
String keyStr = BuilderFactory.STRING.build(keyValue.getKey());
45194519
if (PROFILE_STR.equalsIgnoreCase(keyStr)) {
45204520
profileRaw = keyValue.getValue();
4521-
} else if (RESULTS_STR.equalsIgnoreCase(keyStr)) { // Redis 8
4522-
resultsRaw = keyValue.getValue();
4521+
// } else if (RESULTS_STR.equalsIgnoreCase(keyStr)) { // Redis 8
4522+
// resultsRaw = keyValue.getValue();
45234523
}
45244524
}
45254525
return KeyValue.of(resultsBuilder.build(resultsRaw),

0 commit comments

Comments
 (0)