Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-cnx authored Oct 13, 2023
2 parents 22ba675 + e68a8a6 commit d4e5fe9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ private Future<RedisAPI> connectToRedis() {
.setType(configuration.getRedisClientType());

createConnectStrings().forEach(redisOptions::addConnectionString);

redis = Redis.createClient(vertx, redisOptions);

redis.connect().onSuccess(conn -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public enum StorageType {
private List<Integer> redisPorts = Collections.singletonList(6379);
private boolean redisEnableTls;
private RedisClientType redisClientType = RedisClientType.STANDALONE;

/**
* @deprecated Instance authentication is considered as legacy. With Redis from 6.x on the ACL authentication method should be used.
*/
Expand Down Expand Up @@ -336,6 +337,10 @@ public boolean isRedisEnableTls() {
return redisEnableTls;
}

public boolean isRedisClustered() {
return redisClustered;
}

public String getRedisAuth() {
return redisAuth;
}
Expand Down

0 comments on commit d4e5fe9

Please sign in to comment.