ClickHouse/tests/ci/utils.lib

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
391 B
Plaintext
Raw Normal View History

2023-06-30 14:41:27 +00:00
#!/bin/bash
function run_with_retry()
{
set +e
local total_retries="$1"
shift
local retry=0
until [ "$retry" -ge "$total_retries" ]
do
if "$@"; then
set -e
return
else
retry=$((retry + 1))
sleep 5
fi
done
echo "Command '$*' failed after $total_retries retries, exiting"
exit 1
}