You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within _gcsfs.py in the fix_storage process if the root_path ends with a slash, there is an infinite loop. This is because the dirname function will return each parent directory without the trailing slash.
I think this can be resolved easily, by a safety check for a trailing slash on the root path when the file system is created.
The text was updated successfully, but these errors were encountered:
Within _gcsfs.py in the fix_storage process if the root_path ends with a slash, there is an infinite loop. This is because the dirname function will return each parent directory without the trailing slash.
I think this can be resolved easily, by a safety check for a trailing slash on the root path when the file system is created.
The text was updated successfully, but these errors were encountered: