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
Next Next commit
test: fix flaky test-http-highwatermark
  • Loading branch information
OrKoN committed Mar 17, 2020
commit 8cfd1b8d39c422b91f6ba1c95a200c955a220ed8
2 changes: 1 addition & 1 deletion test/parallel/test-http-highwatermark.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let requestReceived = 0;
const server = http.createServer(function(req, res) {
const id = ++requestReceived;
const enoughToDrain = req.connection.writableHighWaterMark;
const body = 'x'.repeat(enoughToDrain * 100);
const body = 'x'.repeat(enoughToDrain * 200);
Copy link
Copy Markdown
Contributor Author

@OrKoN OrKoN Oct 31, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the single unrelated test that is failing. I saw in its history that it was fixed as a flaky in the past. It seems to fails again and I don't think that it's related to my changes.


if (id === 1) {
// Case of needParse = false
Expand Down