Skip to content

Commit 15dc743

Browse files
authored
✨ feat: Default polling mode sync (#42)
1 parent 090fa68 commit 15dc743

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.featureprobe</groupId>
77
<artifactId>server-sdk-java</artifactId>
8-
<version>2.2.1</version>
8+
<version>2.2.2</version>
99
<name>server-sdk-java</name>
1010
<description>FeatureProbe Server Side SDK for Java</description>
1111

Diff for: src/main/java/com/featureprobe/sdk/server/FPConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ protected FPConfig(Builder builder) {
6565
this.remoteUri = builder.remoteUri;
6666
this.location = builder.location;
6767
this.synchronizerFactory =
68-
builder.synchronizer == null ? new StreamingSynchronizerFactory() : builder.synchronizer;
68+
builder.synchronizer == null ? new PollingSynchronizerFactory() : builder.synchronizer;
6969
this.dataRepositoryFactory =
7070
builder.dataRepository == null ? new MemoryDataRepositoryFactory() : builder.dataRepository;
7171
this.eventProcessorFactory = new DefaultEventProcessorFactory();

0 commit comments

Comments
 (0)