update default options for retry client

This commit is contained in:
Ryan Troost
2024-10-28 18:57:44 +00:00
committed by GitHub
parent 7f5921cddd
commit 006d0667e8

View File

@@ -20,8 +20,8 @@ class ArtifactHttpClient implements Rpc {
private httpClient: HttpClient
private baseUrl: string
private maxAttempts = 5
private baseRetryIntervalMilliseconds = 3000
private retryMultiplier = 1.5
private baseRetryIntervalMilliseconds = 30000
private retryMultiplier = 1.4
constructor(
userAgent: string,