mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-04-23 00:17:25 +08:00
[BugFix] PD reorder fix and add ut (#6375)
This commit is contained in:
@@ -231,6 +231,9 @@ environment_variables: dict[str, Callable[[], Any]] = {
|
||||
# Worker process health check timeout when waiting for responses in seconds (default: 30)
|
||||
"FD_WORKER_ALIVE_TIMEOUT": lambda: int(os.getenv("FD_WORKER_ALIVE_TIMEOUT", "30")),
|
||||
|
||||
# Whether to use PD REORDER, can set 0 or 1
|
||||
"FD_PD_REORDER": lambda: int(os.getenv("FD_PD_REORDER", "0")),
|
||||
|
||||
# Whether to collect user information, default 0 (collect); 1 (do not collect)
|
||||
"DO_NOT_TRACK" : lambda: (os.getenv("DO_NOT_TRACK", "0")) == "1",
|
||||
|
||||
|
||||
Reference in New Issue
Block a user