Skip to content

Commit 79577c0

Browse files
authored
fix VLLM_SPYRE_MAX_LOAD_PROCESSES to int instead of bool (#444)
woops Signed-off-by: jberkhahn <[email protected]>
1 parent eb21f7a commit 79577c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm_spyre/envs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def _backend_backwards_compat() -> str:
117117
# memory usage.
118118
# Set to 0 to allow any number of processes
119119
"VLLM_SPYRE_MAX_LOAD_PROCESSES":
120-
lambda: bool(int(os.getenv("VLLM_SPYRE_MAX_LOAD_PROCESSES", "0"))),
120+
lambda: int(os.getenv("VLLM_SPYRE_MAX_LOAD_PROCESSES", "0")),
121121

122122
# If set, redirects all stdout and stderr from worker processes to files
123123
# within this director. This is useful for debugging card-specific errors

0 commit comments

Comments
 (0)