Skip to content

Commit 4f9d7bb

Browse files
committed
fix typo in gunicorn settings
1 parent 7c563e2 commit 4f9d7bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

run

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ function klines_caching_service() { # runs the klines caching service
225225
/cryptobot/.venv/bin/gunicorn --preload \
226226
--workers=${N_CPUS} \
227227
--worker-class=gthread \
228-
--worker-connections=8 \
228+
--threads=8 \
229229
--worker-tmp-dir /dev/shm \
230230
--bind 0.0.0.0:8999 klines_caching_service:app
231231
}
@@ -253,7 +253,7 @@ function price_log_service() { # runs the klines caching service
253253
/cryptobot/.venv/bin/gunicorn --preload \
254254
--workers=${N_CPUS} \
255255
--worker-class=gthread \
256-
--worker-connections=8 \
256+
--threads=8 \
257257
--worker-tmp-dir /dev/shm \
258258
--bind 0.0.0.0:8998 price_log_service:app
259259
}

0 commit comments

Comments
 (0)