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
Trying to remove directories using SSHFileSystem via rmdir fails silently.
Appears to be missing the synchronous wrapper for _rmdir. i.e. the equivalent of: mkdir = sync_wrapper(_mkdir) and thus ends up all the way in AbstractFileSystem.rmdir which is implemented as pass # not necessary to implement, may not have directories.
A local test of adding the sync_wrapper works ok so far.
The text was updated successfully, but these errors were encountered:
isoflavone-r
changed the title
synchronous 'rmdir' fails silently
synchronous rmdir() fails silently
Oct 14, 2023
Hello.
Trying to remove directories using
SSHFileSystem
viarmdir
fails silently.Appears to be missing the synchronous wrapper for
_rmdir
. i.e. the equivalent of:mkdir = sync_wrapper(_mkdir)
and thus ends up all the way inAbstractFileSystem.rmdir
which is implemented aspass # not necessary to implement, may not have directories
.A local test of adding the sync_wrapper works ok so far.
The text was updated successfully, but these errors were encountered: