diff --git a/test/integration/run.sh b/test/integration/run.sh index e5d4cb8d..adc78b6f 100755 --- a/test/integration/run.sh +++ b/test/integration/run.sh @@ -36,7 +36,8 @@ function retry() { ${command} && break # substitute your command here retry_result=$? n=$[$n+1] - sleep 1 + # approximated binary exponential backoff to reduce flakiness + sleep $((n ** 2)) done }