mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +01:00
Change API_ATTEMPTS to 16 to improve GH Actions
This commit is contained in:
parent
9071a4725d
commit
5feb0a4478
1 changed files with 3 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Reference in a new issue