We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8251007 commit 245865aCopy full SHA for 245865a
openfeature-provider/java/src/main/java/com/spotify/confidence/sdk/OpenFeatureLocalResolveProvider.java
@@ -64,10 +64,7 @@ public class OpenFeatureLocalResolveProvider implements FeatureProvider {
64
new AtomicReference<>(ProviderState.NOT_READY);
65
private volatile boolean initialized = false;
66
private static final Sdk SDK =
67
- Sdk.newBuilder()
68
- .setId(SdkId.SDK_ID_JAVA_LOCAL_PROVIDER)
69
- .setVersion(Version.VERSION)
70
- .build();
+ Sdk.newBuilder().setId(SdkId.SDK_ID_JAVA_LOCAL_PROVIDER).setVersion(Version.VERSION).build();
71
72
private static long getPollIntervalSeconds() {
73
return Optional.ofNullable(System.getenv("CONFIDENCE_RESOLVER_POLL_INTERVAL_SECONDS"))
0 commit comments