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

Commit 7de3dd2

Browse files
committed
Merge pull request #22 from launchdarkly/pk/stream-by-default
enable streaming by default
2 parents a71fec8 + 7339d5b commit 7de3dd2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111

1212
allprojects {
1313
group = 'com.launchdarkly'
14-
version = "0.13.1"
14+
version = "0.14.0"
1515
sourceCompatibility = 1.6
1616
targetCompatibility = 1.6
1717
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static class Builder{
6868
private String proxyHost;
6969
private int proxyPort = -1;
7070
private String proxyScheme;
71-
private boolean stream = false;
71+
private boolean stream = true;
7272
private boolean debugStreaming = false;
7373

7474
/**
@@ -110,7 +110,7 @@ public Builder debugStreaming(boolean debugStreaming) {
110110
}
111111

112112
/**
113-
* Set whether streaming mode should be enabled
113+
* Set whether streaming mode should be enabled. By default, streaming is enabled.
114114
* @param stream whether streaming mode should be enabled
115115
* @return the builder
116116
*/

0 commit comments

Comments
 (0)