Skip to content

Commit

Permalink
Merge pull request ozimov#7 from DmitryErmolchik/master
Browse files Browse the repository at this point in the history
Support of Redis 3+ sentinel mode was added
  • Loading branch information
robertotru authored May 17, 2018
2 parents 8890c82 + 56ee443 commit f6ae219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/redis/embedded/RedisSentinel.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import java.util.List;

public class RedisSentinel extends AbstractRedisInstance {
private static final String REDIS_READY_PATTERN = ".*Sentinel runid is.*";
private static final String REDIS_READY_PATTERN = ".*Sentinel (runid|ID) is.*";

public RedisSentinel(List<String> args, int port) {
super(port);
Expand Down

0 comments on commit f6ae219

Please sign in to comment.