Extend Redis command timeout to 3.5 seconds to avoid TCP retransmission "coincidences."
This commit is contained in:
parent
d5f00db9ea
commit
1a627d6a87
|
@ -21,7 +21,7 @@ public class RedisClusterConfiguration {
|
|||
|
||||
@JsonProperty
|
||||
@NotNull
|
||||
private Duration timeout = Duration.ofSeconds(3);
|
||||
private Duration timeout = Duration.ofMillis(3_500);
|
||||
|
||||
@JsonProperty
|
||||
@NotNull
|
||||
|
|
Loading…
Reference in New Issue