From 7f5189210a724ae18b0f6d29f71ee99451abae61 Mon Sep 17 00:00:00 2001 From: Meng Zhang Date: Wed, 5 Apr 2023 22:20:07 +0800 Subject: [PATCH] fix: don't set web concurrency by default --- deployment/scripts/tabby.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/deployment/scripts/tabby.sh b/deployment/scripts/tabby.sh index d0b7aff..e712144 100755 --- a/deployment/scripts/tabby.sh +++ b/deployment/scripts/tabby.sh @@ -9,10 +9,6 @@ export CONFIG_FILE=${CONFIG_FILE:-/data/config/tabby.toml} # server export MODEL_NAME="${MODEL_NAME:-TabbyML/J-350M}" export MODEL_BACKEND="${MODEL_BACKEND:-python}" -if [ ! -n "$WEB_CONCURRENCY" ]; then - # Set WEB_CONCURRENCY for uvicorn workers. - export WEB_CONCURRENCY=$(nproc --all) -fi # projects export GIT_REPOSITORIES_DIR="${REPOSITORIES_DIR:-/data/repositories}"