Fix transfer archive timeout

Co-authored-by: trevor-signal <131492920+trevor-signal@users.noreply.github.com>
This commit is contained in:
automated-signal 2024-12-02 13:56:37 -06:00 committed by GitHub
parent 195d519301
commit 008e3c36fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2369,7 +2369,7 @@ export function initialize({
responseType: 'jsonwithdetails', responseType: 'jsonwithdetails',
urlParameters, urlParameters,
// Add a bit of leeway to let server respond properly // Add a bit of leeway to let server respond properly
timeout: requestTimeoutInSecs + 15 * SECOND, timeout: (requestTimeoutInSecs + 15) * SECOND,
abortSignal, abortSignal,
}); });