Skip to content
Closed
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
[Squash] Fix nits
  • Loading branch information
jasnell committed Nov 22, 2017
commit 46827dbbd53a01d3e42ba8bc9e0fa2dfe25b6501
4 changes: 2 additions & 2 deletions lib/internal/http2/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ function onSelectPadding(fn) {
// will be deferred until the socket is ready to go.
function requestOnConnect(headers, options) {
const session = this[kSession];
debug(`HttpSession ${sessionName(session[kType])}: connected, ` +
debug(`Http2Session ${sessionName(session[kType])}: connected, ` +
'initializing request');
const streams = session[kState].streams;

Expand Down Expand Up @@ -1011,7 +1011,7 @@ class ClientHttp2Session extends Http2Session {
const state = this[kState];
if (state.destroyed || state.destroying)
throw new errors.Error('ERR_HTTP2_INVALID_SESSION');
debug(`HttpSession ${sessionName(this[kType])}: initiating request`);
debug(`Http2Session ${sessionName(this[kType])}: initiating request`);

this[kUpdateTimer]();

Expand Down