Fix HiCacheNixl TypeError: mem_pool_host passed as file_path (#19517)

This commit is contained in:
ishandhanani
2026-02-27 12:59:32 -06:00
committed by GitHub
parent 35ef38c61b
commit 6a1480ce45

View File

@@ -161,7 +161,7 @@ class StorageBackendFactory:
if backend_name == "file":
return backend_class(storage_config)
elif backend_name == "nixl":
return backend_class(storage_config, mem_pool_host)
return backend_class(storage_config)
elif backend_name == "mooncake":
backend = backend_class(storage_config, mem_pool_host)
return backend