fix(proxy_cli.py): revert db timeout change - user-controllable param

db timeout is a user controllable param, not necessary to change defaults
This commit is contained in:
Krrish Dholakia 2024-04-03 09:37:57 -07:00
parent f07500c5ea
commit 6d32323e3d

View file

@ -410,7 +410,7 @@ def run_server(
) )
db_connection_pool_limit = 100 db_connection_pool_limit = 100
db_connection_timeout = 120 db_connection_timeout = 60
if config is not None: if config is not None:
""" """
Allow user to pass in db url via config Allow user to pass in db url via config