Skip to content

Commit

Permalink
Fix complication error with merge sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
HeartSaVioR committed Mar 27, 2015
1 parent b5adf52 commit 0e11d0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/redis/clients/jedis/JedisCluster.java
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ public String execute(Jedis connection) {

@Override
public Set<String> spop(final String key, final long count) {
return new JedisClusterCommand<Set<String>>(connectionHandler, timeout, maxRedirections) {
return new JedisClusterCommand<Set<String>>(connectionHandler, maxRedirections) {
@Override
public Set<String> execute(Jedis connection) {
return connection.spop(key, count);
Expand Down

0 comments on commit 0e11d0c

Please sign in to comment.