gracenode
Advanced tools
Comparing version 3.9.25 to 3.9.26
{ | ||
"name": "gracenode", | ||
"description": "A node.js framework for real-time applications over UDP and TCP protocols with extendable modules for quick and clean evelopment.", | ||
"version": "3.9.25", | ||
"version": "3.9.26", | ||
"author": "Nobuyori Takahashi <voltrue2@yahoo.com>", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -8,3 +8,3 @@ 'use strict'; | ||
port: 7050, | ||
manualStart: true | ||
manualStart: false | ||
}, | ||
@@ -15,2 +15,3 @@ cluster: { max: 2 } | ||
.then(() => { | ||
/* | ||
gn.manualStart([ gn.http ], (err) => { | ||
@@ -21,2 +22,3 @@ if (err) { | ||
}); | ||
*/ | ||
}) | ||
@@ -23,0 +25,0 @@ .catch((error) => { |
@@ -140,6 +140,10 @@ 'use strict'; | ||
if (error) { | ||
bind.cb(error); | ||
if (bind.cb) { | ||
bind.cb(error); | ||
} | ||
return; | ||
} | ||
bind.cb(); | ||
if (bind.cb) { | ||
bind.cb(); | ||
} | ||
} | ||
@@ -146,0 +150,0 @@ |
@@ -669,2 +669,3 @@ 'use strict'; | ||
STATUS: transport.STATUS, | ||
paused: false, | ||
command: 0, | ||
@@ -671,0 +672,0 @@ payload: null, |
2962502
22999