We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e71209 commit 1c49b44Copy full SHA for 1c49b44
driver/src/main/java/org/neo4j/driver/internal/retry/ExponentialBackoffRetryLogic.java
@@ -45,7 +45,7 @@ public class ExponentialBackoffRetryLogic implements RetryLogic {
45
public static final long DEFAULT_MAX_RETRY_TIME_MS = SECONDS.toMillis(30);
46
47
private static final long INITIAL_RETRY_DELAY_MS = SECONDS.toMillis(1);
48
- private static final double RETRY_DELAY_MULTIPLIER = 1;
+ private static final double RETRY_DELAY_MULTIPLIER = 2.0;
49
private static final double RETRY_DELAY_JITTER_FACTOR = 0.2;
50
private static final long MAX_RETRY_DELAY = Long.MAX_VALUE / 2;
51
0 commit comments