Skip to content

Commit

Permalink
doc: clarify cluster behaviour with no workers
Browse files Browse the repository at this point in the history
Fixes: #1239
Ref: 41b75ca
PR-URL: #2606
Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
  • Loading branch information
Fishrock123 committed Aug 29, 2015
1 parent cd84f39 commit 4c5fc3b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions doc/api/cluster.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,10 @@ for things like sessions and login.
Because workers are all separate processes, they can be killed or
re-spawned depending on your program's needs, without affecting other
workers. As long as there are some workers still alive, the server will
continue to accept connections. Node.js does not automatically manage the
number of workers for you, however. It is your responsibility to manage
the worker pool for your application's needs.
continue to accept connections. If no workers are alive, existing connections
will be dropped and new connections will be refused. Node.js does not
automatically manage the number of workers for you, however. It is your
responsibility to manage the worker pool for your application's needs.

## cluster.schedulingPolicy

Expand Down

0 comments on commit 4c5fc3b

Please sign in to comment.