From 000909688a7dcbe6e8b5ab91acf052b3b82dbc86 Mon Sep 17 00:00:00 2001 From: Thanaji Rao Thakkalapelli Date: Fri, 1 May 2026 15:00:03 -0700 Subject: [PATCH] Update stage_worker.py Signed-off-by: Thanaji Rao Thakkalapelli --- components/src/dynamo/vllm/omni/stage_worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/src/dynamo/vllm/omni/stage_worker.py b/components/src/dynamo/vllm/omni/stage_worker.py index 6264e769d76c..7b4fed1b306c 100644 --- a/components/src/dynamo/vllm/omni/stage_worker.py +++ b/components/src/dynamo/vllm/omni/stage_worker.py @@ -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