-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(server) handle ignored body and node:http destroy #10268
Conversation
❌ @cirospaciari 4 files with test failures on linux-x64-baseline: |
❌ @cirospaciari 4 files with test failures on linux-x64: |
❌ @cirospaciari 5 files with test failures on bun-darwin-aarch64:
|
❌ @cirospaciari 13 files with test failures on bun-windows-x86_64-haswell
|
❌ @cirospaciari 6 files with test failures on bun-darwin-x64:
|
bun.default_allocator, | ||
); | ||
} | ||
readable.abort(global); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think just calling abort
should be enough
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
abort/cancel actually was only canceling the stream not the source, so I fixed that now.
onCancel actually only mark as done, not actually emits a error so I changed the test that I add to match this expectations.
a5891b6
to
8bb2d0f
Compare
3dc0a3c
to
d55f0c9
Compare
fdbe9e2
to
a7a735f
Compare
What does this PR do?
Fix: #10265
Fix: #10665
How did you verify your code works?