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
http: revert flaky test fix
  • Loading branch information
OrKoN committed Mar 17, 2020
commit 01c2228ccf49d3d79cd8652efe9847a328bb1943
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 * 200);
const body = 'x'.repeat(enoughToDrain * 100);

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