Hi @voarsh
Yes, this is correct. The download script is dumb, so it will just continue to cycling on files it is unable to download, forever.
For the flagged files, did you try the build that allows you to override the flag error?
For the google documents, since they can’t really be “downloaded” anyway, you can just filter them out in the script command like this:
exec 6>&1;num_procs=4;output="go"; while [ "$output" ]; do output=$(find "/shared/odrive/Google Drive" -name "*.cloud*" ! -path "*.gdocx*" ! -path "*.gsheetx*" -print0 | xargs -0 -n 1 -P $num_procs python "$HOME/.odrive-agent/bin/odrive.py" sync | tee /dev/fd/6); done