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 {
2424 private static final long DEFAULT_POLLING_INTERVAL_MILLIS = 1000L ;
2525 private static final long DEFAULT_START_WAIT_MILLIS = 5000L ;
2626 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 ;
2828 private static final Logger logger = LoggerFactory .getLogger (LDConfig .class );
2929
3030 protected static final LDConfig DEFAULT = new Builder ().build ();
@@ -98,7 +98,7 @@ public static class Builder {
9898 private FeatureStore featureStore = new InMemoryFeatureStore ();
9999 private long startWaitMillis = DEFAULT_START_WAIT_MILLIS ;
100100 private int samplingInterval = DEFAULT_SAMPLING_INTERVAL ;
101- private long reconnectTimeMs = DEFAULT_RECONNECT_TIME_MS ;
101+ private long reconnectTimeMs = DEFAULT_RECONNECT_TIME_MILLIS ;
102102
103103 /**
104104 * Creates a builder with all configuration parameters set to the default
You can’t perform that action at this time.
0 commit comments