[hot-fix] Fix broken CI (#12564)

This commit is contained in:
Liangsheng Yin
2025-11-04 00:03:25 +08:00
committed by GitHub
parent 3529c061bb
commit edb2569356

View File

@@ -100,7 +100,9 @@ class BaseTpWorker(ABC):
def update_weights_from_disk(self, recv_req: UpdateWeightFromDiskReqInput):
success, message = self.model_runner.update_weights_from_disk(
recv_req.model_path, recv_req.load_format, recv_req.recapture_cuda_graph
recv_req.model_path,
recv_req.load_format,
recapture_cuda_graph=recv_req.recapture_cuda_graph,
)
return success, message