java-server-sdk
java-server-sdk copied to clipboard
LaunchDarkly Server-Side SDK for Java
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 -...
**Describe the bug** I'm noticing a `NullPointerException` when an IO error happens and I attempt to call the `ApiException.getMessage` method. **To reproduce** Trigger an IOException when using the java sdk....
**Is this a support request?** This issue tracker is maintained by LaunchDarkly SDK developers and is intended for feedback on the SDK code. If you're not sure whether the problem...