Skip to content
2 changes: 1 addition & 1 deletion components/src/dynamo/vllm/omni/stage_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ def _to_plain(obj: Any) -> Any:
runtime = getattr(stage_config, "runtime", None)
if runtime is not None:
rt = _to_plain(runtime)
rt["devices"] = "0"
rt.setdefault("devices", "0")
result["runtime"] = rt

return result
Expand Down
Loading