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
Though I am not familiar with the code base yet, just at a glance, the condition below might behave not as expected, for some reason it checks for empty/non-empty, while the code from "allow deleting non-empty folders" PR is still there in the top part of the function.
Here is the possible issue section
it never gets to rm(os_path)
If this is by design in new versions (4.4.0 that our team use on old clusters, can delete non-empty) would it be possible to put this under a feature-flag to allow optional behavior for those who need it?
The text was updated successfully, but these errors were encountered:
Closing issue, because resolved after discussion here #4916
TLDR for google search landers: one of the options is to patch that file if you don't care about the "deleting to trash" feature, just remove it from there and make the code go directly to deletion steps, here's the modified function from notebook==6.0.3:
def delete_file(self, path):
"""Delete file at path."""
path = path.strip('/')
os_path = self._get_os_path(path)
rm = os.unlink
if not os.path.exists(os_path):
raise web.HTTPError(404, u'File or directory does not exist: %s' % os_path)
if os.path.isdir(os_path):
self.log.debug("Removing directory %s", os_path)
with self.perm_to_403():
shutil.rmtree(os_path)
else:
self.log.debug("Unlinking file %s", os_path)
with self.perm_to_403():
rm(os_path)
We did some research and saw that this PR was merged few years ago that was supposed to fix it: #3108
But current version 6.0.0 does not delete non-empty folders

We run it as container spawned by jupyterhub, and here are all versions it uses:
What am I missing, the relevant code did not change since the PR mentioned above, it is still impossible to delete.
Looks like one of the following PRs broke this functionality, might be relevant to this https://github.com/jupyter/notebook/blame/e9ce1b7461713ffccb3ca6df5ccfed3ce59b3b4b/notebook/services/contents/filemanager.py#L544
Though I am not familiar with the code base yet, just at a glance, the condition below might behave not as expected, for some reason it checks for empty/non-empty, while the code from "allow deleting non-empty folders" PR is still there in the top part of the function.

Here is the possible issue section
it never gets to
rm(os_path)
If this is by design in new versions (4.4.0 that our team use on old clusters, can delete non-empty) would it be possible to put this under a feature-flag to allow optional behavior for those who need it?
The text was updated successfully, but these errors were encountered: