Hi, I use duplicacy 2.2.3 on various machines on cron jobs. They all use one Backblaze (b2) repository as default storage.
In the recent weeks I often get errors:
Storage set to b2://de-xxxxxxxxx-duplicacy
Failed to load the Backblaze B2 storage at b2://de-xxxxxxxx-duplicacy: Post https://api.backblazeb2.com/b2api/v1/b2_authorize_account: net/http: TLS handshake timeout
So the backups are not successful for these days.
In a script file, I use the following syntax to check if there are errors or not, but it does not to get triggered, although the backup was clearly not completed.
if [ $? -eq 0 ]
then
echo "Backup finished."
else
echo "ERROR on last backup"
fi
Do you can help me with the problem? Thanks in advance!