We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1de8f36 commit ff987e1Copy full SHA for ff987e1
test/sequential/test-http-regr-gh-2928.js
@@ -16,7 +16,10 @@ const response = Buffer.from('HTTP/1.1 200 OK\r\n\r\n');
16
function execAndClose() {
17
process.stdout.write('.');
18
19
- const socket = net.connect(common.PORT);
+ const socket = net.connect({
20
+ port: common.PORT,
21
+ autoSelectFamily: false
22
+ });
23
socket.on('end', socket.end);
24
socket.on('data', function(chunk) {
25
process.stdout.write('+');
0 commit comments