Skip to content
Snippets Groups Projects
Commit 9b679b71 authored by micah's avatar micah :speech_balloon:
Browse files

the 'fatal' here was causing backups to stop after they hit a user who has

trouble, causing all subsequent backups never to fire.
parent 090cef24
No related branches found
No related tags found
No related merge requests found
......@@ -119,8 +119,8 @@ function do_user() {
let "failedcount = failedcount + 1"
fi
if [ $failedcount -gt 4 ]; then
fatal "dsync failed 3 times for this user -- something is not working right. bailing out."
if [ $failedcount -gt 3 ]; then
warning "dsync failed 3 times for this user -- something is not working right. bailing out."
fi
done
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment