This commit is contained in:
Andy Wilkinson
2018-02-02 09:41:11 +00:00
parent 10af629ec5
commit 8a123d3289

View File

@@ -45,7 +45,7 @@ public class RedisHealthIndicator extends AbstractHealthIndicator {
private final RedisConnectionFactory redisConnectionFactory;
public RedisHealthIndicator(RedisConnectionFactory connectionFactory) {
super("Reddis health check failed");
super("Redis health check failed");
Assert.notNull(connectionFactory, "ConnectionFactory must not be null");
this.redisConnectionFactory = connectionFactory;
}