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

quic: remove undefined variable #35007

Merged
merged 1 commit into from
Sep 3, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions lib/internal/quic/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -2389,7 +2389,6 @@ class QuicClientSession extends QuicSession {

// If handle is a number, creating the session failed.
if (typeof handle === 'number') {
let reason;
switch (handle) {
case ERR_FAILED_TO_CREATE_SESSION:
throw new ERR_QUIC_FAILED_TO_CREATE_SESSION();
Expand All @@ -2398,7 +2397,7 @@ class QuicClientSession extends QuicSession {
case ERR_INVALID_TLS_SESSION_TICKET:
throw new ERR_QUIC_INVALID_TLS_SESSION_TICKET();
default:
throw new ERR_OPERATION_FAILED(`Unspecified reason [${reason}]`);
throw new ERR_OPERATION_FAILED(`Unspecified reason [${handle}]`);
}
}

Expand Down