Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit aaa8588

Browse files
prepare 4.12.0 release (#186)
1 parent c3a635d commit aaa8588

File tree

99 files changed

+6218
-1834
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+6218
-1834
lines changed

packaging-test/test-app/src/main/java/testapp/TestApp.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
package testapp;
22

33
import com.launchdarkly.client.*;
4+
import com.launchdarkly.client.integrations.*;
45
import com.google.gson.*;
56
import org.slf4j.*;
67

78
public class TestApp {
89
private static final Logger logger = LoggerFactory.getLogger(TestApp.class);
910

1011
public static void main(String[] args) throws Exception {
12+
// Verify that our Redis URI constant is what it should be (test for ch63221)
13+
if (!RedisDataStoreBuilder.DEFAULT_URI.toString().equals("redis://localhost:6379")) {
14+
System.out.println("*** error: RedisDataStoreBuilder.DEFAULT_URI is " + RedisDataStoreBuilder.DEFAULT_URI);
15+
System.exit(1);
16+
}
17+
if (!RedisFeatureStoreBuilder.DEFAULT_URI.toString().equals("redis://localhost:6379")) {
18+
System.out.println("*** error: RedisFeatureStoreBuilder.DEFAULT_URI is " + RedisFeatureStoreBuilder.DEFAULT_URI);
19+
System.exit(1);
20+
}
21+
1122
LDConfig config = new LDConfig.Builder()
1223
.offline(true)
1324
.build();

src/main/java/com/launchdarkly/client/Components.java

Lines changed: 576 additions & 45 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)