mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-11-02 10:49:30 +00:00
Fix convert integer CONCURRENT_REQUEST_PER_WORKER (#1247)
This commit is contained in:
parent
29e140196b
commit
aaed22304d
@ -9,4 +9,4 @@ FILE_UPLOAD_PATH = os.getenv("FILE_UPLOAD_PATH", "./file-upload")
|
||||
LOG_LEVEL = os.getenv("LOG_LEVEL", "INFO")
|
||||
ROOT_PATH = os.getenv("ROOT_PATH", "/")
|
||||
|
||||
CONCURRENT_REQUEST_PER_WORKER = os.getenv("CONCURRENT_REQUEST_PER_WORKER", 4)
|
||||
CONCURRENT_REQUEST_PER_WORKER = int(os.getenv("CONCURRENT_REQUEST_PER_WORKER", 4))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user