From 5feb0a4478583001c95808548aa8b8a5652dfea7 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Thu, 25 Aug 2022 03:44:07 -0400 Subject: [PATCH] Change API_ATTEMPTS to 16 to improve GH Actions --- src/fetch.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/fetch.ts b/src/fetch.ts index c1561a6..2a41d77 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -1,5 +1,7 @@ import { Constants } from './constants'; +const API_ATTEMPTS = 16; + export const fetchUsingGuest = async ( status: string, event: FetchEvent @@ -40,7 +42,7 @@ export const fetchUsingGuest = async ( const cache = caches.default; - while (apiAttempts < 12) { + while (apiAttempts < API_ATTEMPTS) { const csrfToken = crypto .randomUUID() .replace(