| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent df9df18 commit 822fb00
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -160,7 +160,7 @@ function debugStream(id, sessionType, message, ...args) { | |||
| 160 | 160 | } | |
| 161 | 161 | ||
| 162 | 162 | function debugStreamObj(stream, message, ...args) { | |
| 163 | - debugStream(stream[kID], stream[kSession][kType], ...args); | ||
| 163 | + debugStream(stream[kID], stream[kSession][kType], message, ...args); | ||
| 164 | 164 | } | |
| 165 | 165 | ||
| 166 | 166 | function debugSession(sessionType, message, ...args) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -18,6 +18,10 @@ assert(stderr.match(/Http2Session client \(\d+\) handling data frame for stream | |||
| 18 | 18 | stderr); | |
| 19 | 19 | assert(stderr.match(/HttpStream \d+ \(\d+\) \[Http2Session client \(\d+\)\] reading starting/), | |
| 20 | 20 | stderr); | |
| 21 | + assert(stderr.match(/HttpStream \d+ \(\d+\) \[Http2Session client \(\d+\)\] closed with code 0/), | ||
| 22 | + stderr); | ||
| 23 | + assert(stderr.match(/HttpStream \d+ \(\d+\) \[Http2Session server \(\d+\)\] closed with code 0/), | ||
| 24 | + stderr); | ||
| 21 | 25 | assert(stderr.match(/HttpStream \d+ \(\d+\) \[Http2Session server \(\d+\)\] tearing down stream/), | |
| 22 | 26 | stderr); | |
| 23 | 27 | assert.strictEqual(stdout.trim(), ''); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments