Reduce default Redis cluster command timeout to 3 seconds.

This commit is contained in:
Jon Chambers 2020-09-04 17:23:15 -04:00 committed by Jon Chambers
parent 76665dd56e
commit e83b41dc01
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ public class RedisClusterConfiguration {
@JsonProperty
@NotNull
private Duration timeout = Duration.ofSeconds(10);
private Duration timeout = Duration.ofSeconds(3);
@JsonProperty
@NotNull