Skip to content
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

node: fix test-net-server-listen-options-signal.js #17782

Merged
merged 2 commits into from
Mar 7, 2025

Conversation

nektro
Copy link
Member

@nektro nektro commented Feb 28, 2025

No description provided.

@robobun
Copy link

robobun commented Feb 28, 2025

Updated 9:13 PM PT - Feb 28th, 2025

@Jarred-Sumner, your commit fb22d198c0e6c0e12a1f5e8c4f332de30d39de9b passed in Build #12523! 🎉


🧪   try this PR locally:

bunx bun-pr 17782

@nektro nektro marked this pull request as ready for review February 28, 2025 05:44
Comment on lines +1533 to +1537
if (options?.signal === undefined) {
return;
}
validateAbortSignal(options.signal, "options.signal");
const { signal } = options;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (options?.signal === undefined) {
return;
}
validateAbortSignal(options.signal, "options.signal");
const { signal } = options;
const signal = options?.signal;
if (signal === undefined) return;
validateAbortSignal(signal, "options.signal");

@Jarred-Sumner Jarred-Sumner merged commit 85f49a7 into main Mar 7, 2025
70 checks passed
@Jarred-Sumner Jarred-Sumner deleted the nektro-patch-59793 branch March 7, 2025 08:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants