Skip to content

Commit 4038757

Browse files
committed
error test: reduce debug lines to fix problems with "apitest"
The apitest tool using the json.Number version has problems digesting the long output from the error plugin. Reduced the number of dummy lines in the output to get around this problem. see #78854
1 parent 4876224 commit 4038757

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/extension/error3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(()=> {
22
// produce lots of data (so that the headers are flushed out > 4K)
3-
for (let i=0; i<1000000;i++) {
3+
for (let i=0; i<1000;i++) {
44
console.debug("data stream.... some data, doesn't matter..."+i)
55
}
66
console.error("This error goes to STDERR")

0 commit comments

Comments
 (0)