We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59bc6af commit 968d983Copy full SHA for 968d983
src/main/java/redis/clients/jedis/CommandObjects.java
@@ -4507,6 +4507,9 @@ public SearchProfileResponseBuilder(Builder<T> resultsBuilder) {
4507
public Map.Entry<T, ProfilingInfo> build(Object data) {
4508
List list = (List) data;
4509
if (list == null || list.isEmpty()) return null;
4510
+ System.out.println("DEBUG>>>>>>>>>>>>>>>>>>>>");
4511
+ System.out.println(redis.clients.jedis.util.SafeEncoder.encodeObject(data));
4512
+ System.out.println("<<<<<<<<<<<<<<<<<<<<DEBUG");
4513
4514
if (list.get(0) instanceof KeyValue) { // RESP3
4515
Object resultsRaw = data;
0 commit comments