apply feedback

This commit is contained in:
prakash 2026-07-02 13:45:07 +05:30
parent 9b070d4b53
commit 9b24d1441e
No known key found for this signature in database

View file

@ -7,7 +7,6 @@ class S3Client {
constructor({
requestAbortTimeout,
...rest
}: { requestAbortTimeout?: number | undefined }) {
this.requestAbortTimeout = requestAbortTimeout
}
@ -113,12 +112,6 @@ class S3Client {
onProgress(event.loaded, event.total)
}
},
onTimeout: (timeout) => {
// Log stall detection - upload will continue but may be slow
console.warn(
`[S3mini] Upload stalled - no progress for ${Math.ceil(timeout / 1000)}s`,
)
},
})
}