Skip to content

Commit

Permalink
fix typo in gunicorn settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Azulinho committed May 2, 2023
1 parent 7c563e2 commit 4f9d7bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ function klines_caching_service() { # runs the klines caching service
/cryptobot/.venv/bin/gunicorn --preload \
--workers=${N_CPUS} \
--worker-class=gthread \
--worker-connections=8 \
--threads=8 \
--worker-tmp-dir /dev/shm \
--bind 0.0.0.0:8999 klines_caching_service:app
}
Expand Down Expand Up @@ -253,7 +253,7 @@ function price_log_service() { # runs the klines caching service
/cryptobot/.venv/bin/gunicorn --preload \
--workers=${N_CPUS} \
--worker-class=gthread \
--worker-connections=8 \
--threads=8 \
--worker-tmp-dir /dev/shm \
--bind 0.0.0.0:8998 price_log_service:app
}
Expand Down

0 comments on commit 4f9d7bb

Please sign in to comment.