From d2a134ae085d71169ede616847d08a95aa8da609 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Mon, 12 Aug 2019 04:37:19 -0400 Subject: reduce automatic retry window for background wiki fetches (#651) --- src/SMAPI.Web/BackgroundService.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/SMAPI.Web/BackgroundService.cs b/src/SMAPI.Web/BackgroundService.cs index cb400fbe..ee7a60f3 100644 --- a/src/SMAPI.Web/BackgroundService.cs +++ b/src/SMAPI.Web/BackgroundService.cs @@ -77,6 +77,7 @@ namespace StardewModdingAPI.Web ** Tasks ****/ /// Update the cached wiki metadata. + [AutomaticRetry(Attempts = 3, DelaysInSeconds = new[] { 30, 60, 120 })] public static async Task UpdateWikiAsync() { WikiModList wikiCompatList = await new ModToolkit().GetWikiCompatibilityListAsync(); -- cgit