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
fixup! fixup! http: increase default header size from 8KB to 16KB
  • Loading branch information
rosaxxny committed Mar 27, 2020
commit 3d6e048f0cfeced1334f8ab2e2957809b48d9b2c
2 changes: 1 addition & 1 deletion test/parallel/test-http-max-http-headers.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const common = require('../common');
const assert = require('assert');
const http = require('http');
const net = require('net');
const MAX = +(process.argv[2] || 8 * 1024); // Command line option, or 8KB.
const MAX = +(process.argv[2] || 16 * 1024); // Command line option, or 8KB.
Comment thread
addaleax marked this conversation as resolved.
Outdated

const { getOptionValue } = require('internal/options');

Expand Down