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

Commit 7710cc2

Browse files
committed
Merge branch 'master' into kwu/javadocs-fix
2 parents e8ac7da + 2a91c1f commit 7710cc2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
.gradletasknamecache
1313
.gradle/
1414
build/
15-
bin/
15+
bin/gradle.properties

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)