Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
f59f484c
Unverified
Commit
f59f484c
authored
Jan 01, 2020
by
neil
Committed by
GitHub
Jan 01, 2020
Browse files
Merge pull request #2657 from gildea/master
Return failure when falling through limiting loop
parents
76d0ef08
a44ea0dd
Changes
1
Show whitespace changes
Inline
Side-by-side
acme.sh
View file @
f59f484c
...
@@ -2040,8 +2040,10 @@ _send_signed_request() {
...
@@ -2040,8 +2040,10 @@ _send_signed_request() {
continue
continue
fi
fi
fi
fi
b
re
ak
re
turn
0
done
done
_info
"Giving up sending to CA server after
$MAX_REQUEST_RETRY_TIMES
retries."
return
1
}
}
...
@@ -3819,9 +3821,11 @@ _check_dns_entries() {
...
@@ -3819,9 +3821,11 @@ _check_dns_entries() {
_sleep 10
_sleep 10
else
else
_info
"All success, let's return"
_info
"All success, let's return"
b
re
ak
re
turn
0
fi
fi
done
done
_info
"Timed out waiting for DNS."
return
1
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment