Skip to content

Commit

Permalink
Merge pull request #129 from xxgao/patch-1
Browse files Browse the repository at this point in the history
Update WorkAloneRedisManager.java
  • Loading branch information
alexxiyang authored Sep 5, 2020
2 parents a960ebc + 626e3ed commit 096e0dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public Set<byte[]> keys(byte[] pattern) {
scanResult = jedis.scan(cursor, params);
keys.addAll(scanResult.getResult());
cursor = scanResult.getCursorAsBytes();
} while (scanResult.getStringCursor().compareTo(ScanParams.SCAN_POINTER_START) > 0);
} while (scanResult.getCursor().compareTo(ScanParams.SCAN_POINTER_START) > 0);
} finally {
jedis.close();
}
Expand Down

0 comments on commit 096e0dd

Please sign in to comment.