From a99d151c68ed7c932803fc77a28548f90c90ae4e Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Mon, 20 May 2024 16:21:57 +0100 Subject: [PATCH] Make retries faster (#8) --- codecov-status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codecov-status.py b/codecov-status.py index ced28aa..efc7ba6 100755 --- a/codecov-status.py +++ b/codecov-status.py @@ -45,7 +45,7 @@ if head_cov != 0.0: break retries += 1 - delay = retries * 30 + delay = retries * 2 print( f"::notice::Codecov API returned no head_totals, we will retry the request in {delay} seconds." )