summaryrefslogtreecommitdiff
path: root/doc/api/cluster.md
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2018-06-13 12:05:55 -0400
committercjihrig <cjihrig@gmail.com>2018-06-20 11:02:01 -0400
commit420d8afe3db22ad703e74892f58f9e32d34ff699 (patch)
tree526d6d66151efb8c5cf820b3b2c0c5af42eabd62 /doc/api/cluster.md
parent99e6ecbb17fa9ffef8e77a043e44367810403dbd (diff)
downloadandroid-node-v8-420d8afe3db22ad703e74892f58f9e32d34ff699.tar.gz
android-node-v8-420d8afe3db22ad703e74892f58f9e32d34ff699.tar.bz2
android-node-v8-420d8afe3db22ad703e74892f58f9e32d34ff699.zip
child_process: change windowsHide default to true
This is likely the default that more Windows users are expecting. PR-URL: https://github.com/nodejs/node/pull/21316 Refs: https://github.com/libuv/libuv/pull/1878 Refs: https://github.com/nodejs/node/pull/21314 Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'doc/api/cluster.md')
-rw-r--r--doc/api/cluster.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/api/cluster.md b/doc/api/cluster.md
index b420645bb4..c9dc17e994 100644
--- a/doc/api/cluster.md
+++ b/doc/api/cluster.md
@@ -698,6 +698,9 @@ values are `'rr'` and `'none'`.
<!-- YAML
added: v0.7.1
changes:
+ - version: REPLACEME
+ pr-url: https://github.com/nodejs/node/pull/21316
+ description: The `windowsHide` option now defaults to `true`.
- version: v9.5.0
pr-url: https://github.com/nodejs/node/pull/18399
description: The `cwd` option is supported now.
@@ -732,7 +735,7 @@ changes:
number. By default each worker gets its own port, incremented from the
master's `process.debugPort`.
* `windowsHide` {boolean} Hide the forked processes console window that would
- normally be created on Windows systems. **Default:** `false`.
+ normally be created on Windows systems. **Default:** `true`.
After calling `.setupMaster()` (or `.fork()`) this settings object will contain
the settings, including the default values.