diff options
author | cjihrig <cjihrig@gmail.com> | 2016-06-06 10:35:38 -0400 |
---|---|---|
committer | cjihrig <cjihrig@gmail.com> | 2016-06-08 11:50:32 -0400 |
commit | 779091ffdb5ea6d93e81f8dd732699fb8836bb0b (patch) | |
tree | 8672ef983a4965c2bc143a3bebd2b1d9c10bd1e1 /doc/api/cluster.md | |
parent | 8c53d2fe9f102944cc1889c4efcac7a86224cf0a (diff) | |
download | node-new-779091ffdb5ea6d93e81f8dd732699fb8836bb0b.tar.gz |
doc: remove cluster.setupMaster() myth
cluster.setupMaster() can be called more than once. Core even has
tests for this functionality. This commit removes an incorrect
statement to the contrary from the documentation.
Fixes: https://github.com/nodejs/node/issues/7156
PR-URL: https://github.com/nodejs/node/pull/7179
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
Diffstat (limited to 'doc/api/cluster.md')
-rw-r--r-- | doc/api/cluster.md | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/doc/api/cluster.md b/doc/api/cluster.md index 06ef0d94b2..63cf2469b2 100644 --- a/doc/api/cluster.md +++ b/doc/api/cluster.md @@ -632,9 +632,6 @@ values are `"rr"` and `"none"`. After calling `.setupMaster()` (or `.fork()`) this settings object will contain the settings, including the default values. -It is effectively frozen after being set, because `.setupMaster()` can -only be called once. - This object is not supposed to be changed or set manually, by you. ## cluster.setupMaster([settings]) |