summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--benchmark/http2/headers.js2
-rw-r--r--benchmark/http2/respond-with-fd.js2
-rw-r--r--benchmark/http2/simple.js2
-rw-r--r--benchmark/http2/write.js2
-rw-r--r--src/node.cc4
-rw-r--r--test/parallel/test-http2-https-fallback-http-server-options.js1
6 files changed, 4 insertions, 9 deletions
diff --git a/benchmark/http2/headers.js b/benchmark/http2/headers.js
index ad1eb50007..beb1d31b71 100644
--- a/benchmark/http2/headers.js
+++ b/benchmark/http2/headers.js
@@ -7,7 +7,7 @@ const bench = common.createBenchmark(main, {
n: [1e3],
nheaders: [0, 10, 100, 1000],
benchmarker: ['h2load']
-}, { flags: ['--no-warnings', '--expose-http2'] });
+}, { flags: ['--no-warnings'] });
function main({ n, nheaders }) {
const http2 = require('http2');
diff --git a/benchmark/http2/respond-with-fd.js b/benchmark/http2/respond-with-fd.js
index cc9992e8ca..3415a9c69f 100644
--- a/benchmark/http2/respond-with-fd.js
+++ b/benchmark/http2/respond-with-fd.js
@@ -11,7 +11,7 @@ const bench = common.createBenchmark(main, {
streams: [100, 200, 1000],
clients: [1, 2],
benchmarker: ['h2load']
-}, { flags: ['--no-warnings', '--expose-http2'] });
+}, { flags: ['--no-warnings'] });
function main({ requests, streams, clients }) {
fs.open(file, 'r', (err, fd) => {
diff --git a/benchmark/http2/simple.js b/benchmark/http2/simple.js
index cf017e6735..f4598b8156 100644
--- a/benchmark/http2/simple.js
+++ b/benchmark/http2/simple.js
@@ -10,7 +10,7 @@ const bench = common.createBenchmark(main, {
streams: [100, 200, 1000],
clients: [1, 2],
benchmarker: ['h2load']
-}, { flags: ['--no-warnings', '--expose-http2'] });
+}, { flags: ['--no-warnings'] });
function main({ requests, streams, clients }) {
const http2 = require('http2');
diff --git a/benchmark/http2/write.js b/benchmark/http2/write.js
index 6fcb1254ca..fc3203c6e5 100644
--- a/benchmark/http2/write.js
+++ b/benchmark/http2/write.js
@@ -7,7 +7,7 @@ const bench = common.createBenchmark(main, {
length: [64 * 1024, 128 * 1024, 256 * 1024, 1024 * 1024],
size: [100000],
benchmarker: ['h2load']
-}, { flags: ['--no-warnings', '--expose-http2'] });
+}, { flags: ['--no-warnings'] });
function main({ streams, length, size }) {
const http2 = require('http2');
diff --git a/src/node.cc b/src/node.cc
index 86f4b91b59..fc33543a6a 100644
--- a/src/node.cc
+++ b/src/node.cc
@@ -3358,7 +3358,6 @@ static void CheckIfAllowedInEnv(const char* exe, bool is_env,
"--experimental-modules",
"--experimental-repl-await",
"--experimental-vm-modules",
- "--expose-http2", // keep as a non-op through v9.x
"--force-fips",
"--icu-data-dir",
"--inspect",
@@ -3608,9 +3607,6 @@ static void ParseArgs(int* argc,
} else if (strcmp(arg, "--expose-internals") == 0 ||
strcmp(arg, "--expose_internals") == 0) {
config_expose_internals = true;
- } else if (strcmp(arg, "--expose-http2") == 0 ||
- strcmp(arg, "--expose_http2") == 0) {
- // Keep as a non-op through v9.x
} else if (strcmp(arg, "-") == 0) {
break;
} else if (strcmp(arg, "--") == 0) {
diff --git a/test/parallel/test-http2-https-fallback-http-server-options.js b/test/parallel/test-http2-https-fallback-http-server-options.js
index 20e2b122a2..8143f56d49 100644
--- a/test/parallel/test-http2-https-fallback-http-server-options.js
+++ b/test/parallel/test-http2-https-fallback-http-server-options.js
@@ -1,4 +1,3 @@
-// Flags: --expose-http2
'use strict';
const common = require('../common');