mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
test: raise pummel/test-net-throttle write req size
pummel/test-net-throttle assumes that a couple of big write requests result in some of them getting queued because the kernel's send buffer fills up. Said assumption breaks on systems with large send buffers. Raise the size of the write request to ameliorate the issue.
This commit is contained in:
@@ -26,7 +26,7 @@ var common = require('../common');
|
||||
var assert = require('assert');
|
||||
var net = require('net');
|
||||
|
||||
var N = 160 * 1024;
|
||||
var N = 1024 * 1024;
|
||||
var part_N = N / 3;
|
||||
var chars_recved = 0;
|
||||
var npauses = 0;
|
||||
|
||||
Reference in New Issue
Block a user