-
-
Notifications
You must be signed in to change notification settings - Fork 687
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Bug Description
Sometimes Aborting Undici.Request causes whole program to stop, even though everything is wrapped around try catch.
Reproducible By
I don't have minimal reproducible example, as my code is larger in size. But Undici.Fetch doesn't have this issue.
Here is minimal reproducible example:
const undici = require('undici')
async function testUndici() {
const controller = new AbortController()
const {statusCode,headers,trailers,body} = await undici.request("https://github.com/fawazahmed0/tiger/releases/download/v2/pipetocsv.7z", { signal: controller.signal }).catch(console.error)
setTimeout(()=>controller.abort(), 500)
}
testUndici()Expected Behavior
Undici.Request and AbortController should work
Logs & Screenshots
node:events:498
throw er; // Unhandled 'error' event
^
DOMException [AbortError]: This operation was aborted
at new DOMException (node:internal/per_context/domexception:53:5)
at AbortController.abort (node:internal/abort_controller:395:18)
at Timeout._onTimeout (T:\xx\other scripts\undici-debug.js:7:31)
at listOnTimeout (node:internal/timers:573:17)
at process.processTimers (node:internal/timers:514:7)
Emitted 'error' event on BodyReadable instance at:
at emitErrorNT (node:internal/streams/destroy:170:8)
at emitErrorCloseNT (node:internal/streams/destroy:129:3)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
Node.js v22.3.0
Environment
Ubuntu 24.04 & Windows 11
Node v22.3.0
Undici 6.19.1
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working