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

refactor: move out more h2 from core client #2860

Merged
merged 4 commits into from
Feb 28, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
WIP
  • Loading branch information
ronag committed Feb 28, 2024
commit f55fc28c304cfe8f7399ed93060f4d114353b928
6 changes: 3 additions & 3 deletions lib/dispatcher/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ async function connect (client) {
hostname,
protocol,
port,
version: client[kHTTPContext].version,
version: client[kHTTPContext]?.version,
servername: client[kServerName],
localAddress: client[kLocalAddress]
},
Expand Down Expand Up @@ -467,7 +467,7 @@ async function connect (client) {
hostname,
protocol,
port,
version: client[kHTTPContext].version,
version: client[kHTTPContext]?.version,
servername: client[kServerName],
localAddress: client[kLocalAddress]
},
Expand All @@ -490,7 +490,7 @@ async function connect (client) {
hostname,
protocol,
port,
version: client[kHTTPContext].version,
version: client[kHTTPContext]?.version,
servername: client[kServerName],
localAddress: client[kLocalAddress]
},
Expand Down
Loading