We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After investigating why orphaned files weren't being removed I discovered that util.get_root_files gets called in reverse:
remove_orphaned.py:
root_files = self.executor.submit(util.get_root_files, self.remote_dir, self.root_dir, self.orphaned_dir)
util.py
def get_root_files(root_dir, remote_dir, exclude_dir=None):
This results in files not being removed as the wrong dir is searched.
root_dir: /torrents remote_dir: /data/torrents
Docker
4.0.0
master
The text was updated successfully, but these errors were encountered:
Fix remove_orphans when remote_dir is used
e429772
Fixes StuffAnThings#333
fixes #333
7cd9982
bobokun
Successfully merging a pull request may close this issue.
Describe the Bug
After investigating why orphaned files weren't being removed I discovered that util.get_root_files gets called in reverse:
remove_orphaned.py:
util.py
This results in files not being removed as the wrong dir is searched.
Config
Installation
Docker
Version Number
4.0.0
What branch are you on?
master
The text was updated successfully, but these errors were encountered: