Skip to content

Commit

Permalink
Revert "Increase SQLAlchemy pool size to 15"
Browse files Browse the repository at this point in the history
This reverts commit ddce303.
  • Loading branch information
kruai committed Apr 19, 2024
1 parent f3ed62a commit 2ee3e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def __init__(self, runtime_environment):

self._db_ssl_mode = os.getenv("INVENTORY_DB_SSL_MODE", "")
self.db_pool_timeout = int(os.getenv("INVENTORY_DB_POOL_TIMEOUT", "5"))
self.db_pool_size = int(os.getenv("INVENTORY_DB_POOL_SIZE", "15"))
self.db_pool_size = int(os.getenv("INVENTORY_DB_POOL_SIZE", "5"))

self.db_uri = self._build_db_uri(self._db_ssl_mode)

Expand Down

0 comments on commit 2ee3e42

Please sign in to comment.