Skip to content

Commit 201fbd4

Browse files
committed
Revert "Check if default dialect = 0 fixes the error"
This reverts commit 8cd50dd.
1 parent 8cd50dd commit 201fbd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ protected RedisProtocol getProtocol() {
5757
private JedisBroadcastAndRoundRobinConfig broadcastAndRoundRobinConfig = null;
5858
private Lock mapperLock = new ReentrantLock(true);
5959
private volatile JsonObjectMapper jsonObjectMapper;
60-
private final AtomicInteger searchDialect = new AtomicInteger(0); // DEFAULT_SEARCH_DIALECT = 2;
60+
private final AtomicInteger searchDialect = new AtomicInteger(2); // DEFAULT_SEARCH_DIALECT = 2;
6161

6262
@Experimental
6363
void setKeyArgumentPreProcessor(CommandKeyArgumentPreProcessor keyPreProcessor) {

0 commit comments

Comments
 (0)