Skip to content

Commit

Permalink
incrment pool size (#312)
Browse files Browse the repository at this point in the history
  • Loading branch information
shincap8 authored Nov 21, 2024
1 parent fb19829 commit 7731ccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/infrastructure/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
class Connection(metaclass=Singleton):
def __init__(self) -> None:
self.engine = create_engine(
CONNECTION_URI, echo=False, pool_pre_ping=True, pool_size=2, pool_recycle=60
CONNECTION_URI, echo=False, pool_pre_ping=True, pool_size=6, pool_recycle=60
)
self.metadata = MetaData()

Expand Down

0 comments on commit 7731ccb

Please sign in to comment.