Change API_ATTEMPTS to 16 to improve GH Actions

This commit is contained in:
dangered wolf 2022-08-25 03:44:07 -04:00
parent 9071a4725d
commit 5feb0a4478
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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(