From 45bf01c2f3eb1ece91f1f90f516bbf5af5da6243 Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Wed, 22 Apr 2026 21:21:20 +0800 Subject: [PATCH] Increase IBKR gunicorn timeout budget --- Procfile | 1 + gunicorn.conf.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Procfile diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..9a3e12c --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: gunicorn --bind :$PORT --workers 1 --threads 1 --timeout 300 main:app diff --git a/gunicorn.conf.py b/gunicorn.conf.py index c37aa36..55c0522 100644 --- a/gunicorn.conf.py +++ b/gunicorn.conf.py @@ -1,4 +1,4 @@ # gunicorn.conf.py -timeout = 120 +timeout = 300 workers = 1 threads = 1