Skip to content

Commit

Permalink
fix(redis-client): illegal db param in CamelliaRedisProxyResource (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
caojiajun committed Oct 22, 2024
1 parent d1e5836 commit c48897b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public CamelliaRedisProxyResource(String password, String proxyName) {
}

public CamelliaRedisProxyResource(String password, String proxyName, long bid, String bgroup) {
this(password, proxyName, bid, bgroup, -1);
this(password, proxyName, bid, bgroup, 0);
}

public CamelliaRedisProxyResource(String password, String proxyName, long bid, String bgroup, int db) {
Expand Down

0 comments on commit c48897b

Please sign in to comment.