-
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
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
[BUG] Doesn't like certain files but doesn't tell which ones #39
Comments
Are you running Maestral with GUI, or as a command line script? The GUI has a "Sync Issues" panel which you can access from the main menu where files with sync errors are listed. The command line client indeed lacks support for this at the moment... |
The command line client indeed lacks support for this at the moment...
The CLI client indeed.
|
In this case, you can find out which file caused the error by running Maestral interactively in a Python interpreter: from maestral.main import Maestral
m = Maestral() # starts syncing
err = m.sync.sync_errors.get() # gets the last error from the sync_errors queue
print(err.local_path) # print the local path of the file It's not very elegant, but it works. |
Right, the newest version of maestral now supports listing all sync errors in the command line. Just run |
Describe the bug
There are some files in dropbox, that maestral (or maybe dropbox) doesn't like, but doesn't tell me which so I can't really do anything about it:
To Reproduce
Happens consistently but I obviously don't know which files are the case.
Expected behaviour
maestral to tell me which files were rejected.
System (please complete the following information):
The text was updated successfully, but these errors were encountered: