We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be083a2 commit 9a75d6bCopy full SHA for 9a75d6b
fsspec-proxy/fsspec_proxy/file_manager.py
@@ -48,7 +48,11 @@ def initialize_filesystems(self):
48
fs_path = fs_config["path"]
49
kwargs = fs_config.get("kwargs", {})
50
51
- fs, url2 = fsspec.url_to_fs(fs_path, **kwargs)
+ try:
52
+ fs, url2 = fsspec.url_to_fs(fs_path, **kwargs)
53
+ except ImportError:
54
+ logger.error("Instantiating filesystem failed")
55
+ continue
56
if not fs.async_impl:
57
fs = AsyncFileSystemWrapper(fs)
58
0 commit comments