Compare commits

..

2 Commits

Author SHA1 Message Date
Koloszár Gergely
b253eebdd2
Merge 239a82876e into 936dfe8d02 2025-10-22 17:21:47 +02:00
Gergely Koloszar
239a82876e fix: silence ping while checking remote urls 2025-10-22 17:20:56 +02:00

View File

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