mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +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';
|
import { Constants } from './constants';
|
||||||
|
|
||||||
|
const API_ATTEMPTS = 16;
|
||||||
|
|
||||||
export const fetchUsingGuest = async (
|
export const fetchUsingGuest = async (
|
||||||
status: string,
|
status: string,
|
||||||
event: FetchEvent
|
event: FetchEvent
|
||||||
|
@ -40,7 +42,7 @@ export const fetchUsingGuest = async (
|
||||||
|
|
||||||
const cache = caches.default;
|
const cache = caches.default;
|
||||||
|
|
||||||
while (apiAttempts < 12) {
|
while (apiAttempts < API_ATTEMPTS) {
|
||||||
const csrfToken = crypto
|
const csrfToken = crypto
|
||||||
.randomUUID()
|
.randomUUID()
|
||||||
.replace(
|
.replace(
|
||||||
|
|
Loading…
Add table
Reference in a new issue