1
0
Fork 0

reject don't throw

vmjoseph/download-v4-client-blob
Rob Herley 2023-12-20 14:37:13 -05:00
parent 34a411f3c0
commit d6f3ee93b8
No known key found for this signature in database
GPG Key ID: D1602042C3543B06
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ async function streamExtractInternal(
const timeout = 30 * 1000
const timerFn = (): void => {
throw new Error(`Blob storage chunk did not respond in ${timeout}ms `)
reject(new Error(`Blob storage chunk did not respond in ${timeout}ms `))
}
let timer = setTimeout(timerFn, timeout)