Skip to content

Commit 253678d

Browse files
fix: pass the parameter value of enableConnectionPool instead of true always (#2096)
* fix: pass the parameter value of enableConnectionPool instead of true always * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 7c2dbd3 commit 253678d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/JsonStreamWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ public Builder setReconnectAfter10M(boolean reconnectAfter10M) {
320320
* @return Builder
321321
*/
322322
public Builder setEnableConnectionPool(boolean enableConnectionPool) {
323-
this.schemaAwareStreamWriterBuilder.setEnableConnectionPool(true);
323+
this.schemaAwareStreamWriterBuilder.setEnableConnectionPool(enableConnectionPool);
324324
return this;
325325
}
326326

0 commit comments

Comments
 (0)