Skip to content

Commit

Permalink
fix(db): Increase connection pool size.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmussig committed Dec 10, 2023
1 parent ca0974d commit d710ee3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@
GTDB_DB_URL,
convert_unicode=True,
pool_size=10,
max_overflow=20,
max_overflow=100,
pool_recycle=3600
)

gtdb_web_engine = create_engine(
GTDB_WEB_DB_URL,
convert_unicode=True,
pool_size=10,
max_overflow=20,
max_overflow=100,
pool_recycle=3600
)

gtdb_common_engine = create_engine(
GTDB_COMMON_DB_URL,
convert_unicode=True,
pool_size=10,
max_overflow=20,
max_overflow=100,
pool_recycle=3600
)

Expand Down

0 comments on commit d710ee3

Please sign in to comment.