Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/cluster.md')
-rw-r--r--doc/api/cluster.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/cluster.md b/doc/api/cluster.md
index bf0e77867a9..06ef0d94b2c 100644
--- a/doc/api/cluster.md
+++ b/doc/api/cluster.md
@@ -140,9 +140,9 @@ Similar to the `cluster.on('exit')` event, but specific to this worker.
```js
const worker = cluster.fork();
worker.on('exit', (code, signal) => {
- if( signal ) {
+ if (signal) {
console.log(`worker was killed by signal: ${signal}`);
- } else if( code !== 0 ) {
+ } else if (code !== 0) {
console.log(`worker exited with error code: ${code}`);
} else {
console.log('worker success!');
@@ -285,7 +285,7 @@ if (cluster.isMaster) {
server.listen(8000);
process.on('message', (msg) => {
- if(msg === 'shutdown') {
+ if (msg === 'shutdown') {
// initiate graceful close of any connections to server
}
});