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

dsync: the dsync handler incorrectly would test for >3 failures before

emitting the failure message, it should do so at =>3
parent 48b7b6ad
Branches
No related tags found
No related merge requests found
...@@ -117,7 +117,7 @@ function do_user() { ...@@ -117,7 +117,7 @@ function do_user() {
let "failedcount = failedcount + 1" let "failedcount = failedcount + 1"
fi fi
if [ $failedcount -gt 3 ]; then if [ $failedcount -ge 3 ]; then
warning "dsync failed 3 times for this user -- something is not working right. bailing out." warning "dsync failed 3 times for this user -- something is not working right. bailing out."
fi fi
done done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment