Increase RequestMaxRetry and decrease RequestRetrySleep (also remove CreateChanel struct from 77cfe750)
All checks were successful
Build Docker and Deploy / Build Docker Container (push) Successful in 1m37s
Build Docker and Deploy / Deploy to Server (push) Successful in 10s

This commit is contained in:
2024-05-26 19:30:13 +02:00
parent 77cfe75043
commit 97a834ae6a
6 changed files with 321 additions and 230 deletions

View File

@@ -395,8 +395,8 @@ var configProd = func() Config {
EnableLogger: true,
},
RequestTimeout: 16 * time.Second,
RequestMaxRetry: 8,
RequestRetrySleep: 100 * time.Millisecond,
RequestMaxRetry: 32,
RequestRetrySleep: 32 * time.Millisecond,
ReturnRawErrors: false,
DummyFirebase: false,
FirebaseTokenURI: "https://oauth2.googleapis.com/token",