From c3f994008ca36ab15dbffa2061a3fdbd8c13ed39 Mon Sep 17 00:00:00 2001 From: Yicheng Luo Date: Wed, 27 Mar 2024 21:47:41 +0000 Subject: [PATCH] Fix SFTPFilesystem parameters --- lxm3/xm_cluster/artifacts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxm3/xm_cluster/artifacts.py b/lxm3/xm_cluster/artifacts.py index 5732d18..02bcd89 100644 --- a/lxm3/xm_cluster/artifacts.py +++ b/lxm3/xm_cluster/artifacts.py @@ -147,7 +147,7 @@ def __init__( ): if connect_kwargs is None: connect_kwargs = {} - fs = SFTPFileSystem("sftp", host=hostname, username=user, **connect_kwargs) # type: ignore + fs = SFTPFileSystem(host=hostname, username=user, **connect_kwargs) # type: ignore # Normalize the storage root to an absolute path. self._host = hostname self._user = user