From 63d4cae009e114127e1a80644e4bffc019e2f4a7 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Sun, 6 Jan 2019 01:52:16 +0100 Subject: worker: remove `--experimental-worker` flag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Having an experimental feature behind a flag makes change if we are expecting significant breaking changes to its API. Since the Worker API has been essentially stable since its initial introduction, and no noticeable doubt about possibly not keeping the feature around has been voiced, removing the flag and thereby reducing the barrier to experimentation, and consequently receiving feedback on the implementation, seems like a good idea. PR-URL: https://github.com/nodejs/node/pull/25361 Reviewed-By: Rich Trott Reviewed-By: Yuta Hiroto Reviewed-By: Shingo Inoue Reviewed-By: James M Snell Reviewed-By: Colin Ihrig Reviewed-By: Benjamin Gruenbaum Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: Tobias Nießen Reviewed-By: Masashi Hirano Reviewed-By: Weijia Wang Reviewed-By: Gireesh Punathil Reviewed-By: Michael Dawson --- tools/test.py | 1 - 1 file changed, 1 deletion(-) (limited to 'tools/test.py') diff --git a/tools/test.py b/tools/test.py index 0a2ca193d7..633c347e74 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1588,7 +1588,6 @@ def Main(): if options.worker: run_worker = join(workspace, "tools", "run-worker.js") - options.node_args.append('--experimental-worker') options.node_args.append(run_worker) shell = abspath(options.shell) -- cgit v1.2.3