Skip to content

Commit

Permalink
fix: pass the parameter value of enableConnectionPool instead of true…
Browse files Browse the repository at this point in the history
… 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>
  • Loading branch information
Neenu1995 and gcf-owl-bot[bot] committed May 30, 2023
1 parent 7c2dbd3 commit 253678d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -320,7 +320,7 @@ public Builder setReconnectAfter10M(boolean reconnectAfter10M) {
* @return Builder
*/
public Builder setEnableConnectionPool(boolean enableConnectionPool) {
this.schemaAwareStreamWriterBuilder.setEnableConnectionPool(true);
this.schemaAwareStreamWriterBuilder.setEnableConnectionPool(enableConnectionPool);
return this;
}

Expand Down

0 comments on commit 253678d

Please sign in to comment.