Fixing forgotten timeout in retry

This commit is contained in:
Dmitry Anderson 2024-11-12 11:47:58 +01:00
parent b42cc5c811
commit 49248b6d62

View File

@ -21,6 +21,7 @@ func Retry(
return true, errs return true, errs
} }
errs = append(errs, err) errs = append(errs, err)
time.Sleep(waitBeforeRetry)
} }
return false, errs return false, errs
} }