This repository was archived by the owner on May 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/com/launchdarkly/client Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public final class LDConfig {
24
24
private static final long DEFAULT_POLLING_INTERVAL_MILLIS = 1000L ;
25
25
private static final long DEFAULT_START_WAIT_MILLIS = 5000L ;
26
26
private static final int DEFAULT_SAMPLING_INTERVAL = 0 ;
27
- private static final long DEFAULT_RECONNECT_TIME_MS = 1000 ;
27
+ private static final long DEFAULT_RECONNECT_TIME_MILLIS = 1000 ;
28
28
private static final Logger logger = LoggerFactory .getLogger (LDConfig .class );
29
29
30
30
protected static final LDConfig DEFAULT = new Builder ().build ();
@@ -98,7 +98,7 @@ public static class Builder {
98
98
private FeatureStore featureStore = new InMemoryFeatureStore ();
99
99
private long startWaitMillis = DEFAULT_START_WAIT_MILLIS ;
100
100
private int samplingInterval = DEFAULT_SAMPLING_INTERVAL ;
101
- private long reconnectTimeMs = DEFAULT_RECONNECT_TIME_MS ;
101
+ private long reconnectTimeMs = DEFAULT_RECONNECT_TIME_MILLIS ;
102
102
103
103
/**
104
104
* Creates a builder with all configuration parameters set to the default
You can’t perform that action at this time.
0 commit comments