how to set retry times when uploading local cache to remote fails due to network or bucket does not exist in remote,I have tried to set --retries but it seems it is not working
Run the command 'rclone version' and share the full output of the command.
rclone v1.62.2
Which cloud storage system are you using? (eg Google Drive)
Google cloud
The command you were trying to run (eg rclone copy /tmp remote:tmp)
rclone starts with 10s retry delay and then on error doubles time of subsequent tries until 5 min is reached. Then will continue retrying every 5 min forever.
failed to upload try #1, will retry in 10s
failed to upload try #2, will retry in 20s
failed to upload try #3, will retry in 40s
failed to upload try #4, will retry in 1m20s
failed to upload try #5, will retry in 2m40s
failed to upload try #6, will retry in 5m0s
failed to upload try #7, will retry in 5m0s
failed to upload try #8, will retry in 5m0s
...
failed to upload try #100, will retry in 5m0s
ty for reply!
I use rclone in my open source project and sometimes users may mistakenly write a wrong bucket name or there are network issues at that time I want to terminate my program and switch to local mode.
I dont have a good idea either since I think it might be a reason you dont want to add a configuration for this type of error? Now in my code I am detecting the error output myself so I am just curious if there is an official config for this.