| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 22f8359 commit 081e488
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -153,7 +153,7 @@ function debugStream(id, sessionType, message, ...args) { | |||
| 153 | 153 | } | |
| 154 | 154 | ||
| 155 | 155 | function debugStreamObj(stream, message, ...args) { | |
| 156 | - debugStream(stream[kID], stream[kSession][kType], ...args); | ||
| 156 | + debugStream(stream[kID], stream[kSession][kType], message, ...args); | ||
| 157 | 157 | } | |
| 158 | 158 | ||
| 159 | 159 | 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