Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

egg-cluster

Package Overview
Dependencies
Maintainers
5
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

egg-cluster - npm Package Compare versions

Comparing version 1.12.1 to 1.12.2

6

History.md
1.12.2 / 2017-09-28
===================
**fixes**
* [[`0c886a4`](https://github.com/eggjs/egg-cluster/commit/0c886a43ecac25e79de910cb04778efc77aab9a4)] - fix: should disable worker refork (#46) (fengmk2 <<fengmk2@gmail.com>>)
1.12.1 / 2017-09-22

@@ -3,0 +9,0 @@ ==================

4

lib/master.js

@@ -271,3 +271,5 @@ 'use strict';

for (const id in cluster.workers) {
cluster.workers[id].process.kill('SIGTERM');
const worker = cluster.workers[id];
worker.disableRefork = true;
worker.process.kill('SIGTERM');
}

@@ -274,0 +276,0 @@ }

{
"name": "egg-cluster",
"version": "1.12.1",
"version": "1.12.2",
"description": "cluster manager for egg",

@@ -35,3 +35,3 @@ "main": "index.js",

"dependencies": {
"cfork": "^1.6.1",
"cfork": "^1.7.0",
"cluster-reload": "^1.0.2",

@@ -68,2 +68,2 @@ "debug": "^3.0.1",

}
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc