fix chunk timeout + update tests

This commit is contained in:
Rob Herley
2024-07-23 21:57:39 -04:00
parent 1db73622df
commit 182702d2df
3 changed files with 216 additions and 373 deletions

View File

@@ -57,3 +57,7 @@ export function getConcurrency(): number {
const concurrency = 16 * numCPUs
return concurrency > 300 ? 300 : concurrency
}
export function getUploadChunkTimeout(): number {
return 30_000
}