Skip to content

Commit 8276f94

Browse files
authored
Fix #207 (#208)
* Attempt to use larger pool. * Fix typo.
1 parent 41c884a commit 8276f94

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integration/conftest.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ def conn_creator():
5252
# gcp_project = os.environ.get("GOOGLE_CLOUD_PROJECT", "scratch-361908")
5353
connection_string = "bigquery://"
5454

55-
engine = sa.create_engine(connection_string, echo=True)
55+
engine = sa.create_engine(
56+
connection_string, echo=True, pool_size=10, max_overflow=20
57+
)
5658
apply_patches(engine)
5759

5860
return engine

0 commit comments

Comments
 (0)