Suppress 'signal process started' message when nginx config is restored (related to issue #4995) (#6747)

This commit is contained in:
Trekky12 2026-07-03 16:31:31 +02:00 committed by GitHub
parent 92a1b47108
commit 61400500e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3524,7 +3524,7 @@ _restoreNginx() {
done
_info "Reloading nginx"
if ! nginx -s reload >/dev/null; then
if ! nginx -s reload >/dev/null 2>&1; then
_err "An error occurred while reloading nginx, please open an issue on $PROJECT."
return 1
fi