Skip to content

Commit 9a75d6b

Browse files
committed
skip failures
1 parent be083a2 commit 9a75d6b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

fsspec-proxy/fsspec_proxy/file_manager.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,11 @@ def initialize_filesystems(self):
4848
fs_path = fs_config["path"]
4949
kwargs = fs_config.get("kwargs", {})
5050

51-
fs, url2 = fsspec.url_to_fs(fs_path, **kwargs)
51+
try:
52+
fs, url2 = fsspec.url_to_fs(fs_path, **kwargs)
53+
except ImportError:
54+
logger.error("Instantiating filesystem failed")
55+
continue
5256
if not fs.async_impl:
5357
fs = AsyncFileSystemWrapper(fs)
5458

0 commit comments

Comments
 (0)