Skip to content

Commit

Permalink
Remove smoke test, update settings, bump GAX version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbausor committed Mar 7, 2017
1 parent 78d5e1b commit d9892d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 74 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -554,13 +554,13 @@ private static Builder createDefault() {
builder
.writeLogEntriesSettings()
.getBundlingSettingsBuilder()
.setElementCountThreshold(100)
.setRequestByteThreshold(20480)
.setDelayThreshold(Duration.millis(10))
.setElementCountThreshold(1000)
.setRequestByteThreshold(1048576)
.setDelayThreshold(Duration.millis(50))
.setFlowControlSettings(
FlowControlSettings.newBuilder()
.setMaxOutstandingElementCount(10000)
.setMaxOutstandingRequestBytes(2048000)
.setMaxOutstandingElementCount(100000)
.setMaxOutstandingRequestBytes(10485760)
.setLimitExceededBehavior(LimitExceededBehavior.ThrowException)
.build());
builder
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<github.global.server>github</github.global.server>
<google.auth.version>0.6.0</google.auth.version>
<grpc.version>1.0.3</grpc.version>
<gax.version>0.2.0</gax.version>
<gax.version>0.3.0</gax.version>
<generatedProto.version>0.1.5</generatedProto.version>
<core.version>0.9.5-alpha-SNAPSHOT</core.version>
<beta.version>0.9.5-beta-SNAPSHOT</beta.version>
Expand Down

0 comments on commit d9892d5

Please sign in to comment.