Compare commits

..

1 Commits

Author SHA1 Message Date
Koloszár Gergely
a4e03a0b88
Merge cbc131028f into 936dfe8d02 2025-10-22 23:22:23 +00:00

View File

@ -503,7 +503,7 @@ check_availability() {
if [[ $2 ]]; then
timeout_sec=$2
fi
if ! ping -w "$timeout_sec" "$url" > /dev/null 2>&1; then
if ! ping -w "$timeout_sec" "$url" > /dev/null; then
logger WARN "Failed to reach $url, service may be down."
return 1
fi