Depi1993

Results 1 issues of Depi1993

Launch Darkly Configuration: `implementation group: 'com.launchdarkly', name: 'launchdarkly-java-server-sdk', version: '6.0.4'` With Config: `new LDConfig.Builder() .http(Components.httpConfiguration() .connectTimeout(Duration.ofSeconds(LD_CONNECT_TIMEOUT_SECONDS)) .socketTimeout(Duration.ofSeconds(LD_SOCKET_TIMEOUT_SECONDS))) .events(Components.sendEvents().flushInterval(Duration.ofSeconds(FLUSH_INTERVAL))) .build();` `new LDClient(credentials.get(ApiConstants.LD_CLIENT_CREDS_KEY), ldConfig);` After a while of running, started getting -...

enhancement