Skip to content

Commit

Permalink
don't retry things forever
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats committed Oct 2, 2024
1 parent 43e5aa9 commit 8c9148c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Plogon/BuildProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -820,6 +820,7 @@ private static async Task RetryUntil(Func<Task> what, int maxTries = 10)
try
{
await what();
return;
}
catch (Exception ex)
{
Expand Down

0 comments on commit 8c9148c

Please sign in to comment.