Skip to content

Commit

Permalink
Merge pull request #7 from Ecogenomics/dev
Browse files Browse the repository at this point in the history
fix(db): Increase connection pool size due to timeouts.
  • Loading branch information
aaronmussig committed Sep 28, 2023
2 parents 64bfa51 + 7f25d4a commit d3fb1af
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 @@ -11,23 +11,23 @@
gtdb_engine = create_engine(
GTDB_DB_URL,
convert_unicode=True,
pool_size=5,
pool_size=10,
max_overflow=20,
pool_recycle=3600
)

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

gtdb_common_engine = create_engine(
GTDB_COMMON_DB_URL,
convert_unicode=True,
pool_size=5,
pool_size=10,
max_overflow=20,
pool_recycle=3600
)
Expand Down

0 comments on commit d3fb1af

Please sign in to comment.