File tree Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ SocketCluster.prototype._init = function (options) {
108
108
tcpSynBacklog : null ,
109
109
workerController : null ,
110
110
brokerController : null ,
111
+ brokerConnectRetryErrorThreshold : null ,
111
112
initController : null ,
112
113
rebootOnSignal : true ,
113
114
downgradeToUser : false ,
Original file line number Diff line number Diff line change 11
11
spec :
12
12
containers :
13
13
- name : socketcluster
14
- image : socketcluster/socketcluster:v6.7.0
14
+ image : socketcluster/socketcluster:v6.7.1
15
15
ports :
16
16
- containerPort : 8000
17
17
env :
Original file line number Diff line number Diff line change @@ -95,7 +95,8 @@ SCWorker.prototype._init = function (options) {
95
95
this . brokerEngineClient = new this . brokerEngine . Client ( {
96
96
brokers : this . options . brokers ,
97
97
secretKey : this . options . secretKey ,
98
- pubSubBatchDuration : this . options . pubSubBatchDuration
98
+ pubSubBatchDuration : this . options . pubSubBatchDuration ,
99
+ connectRetryErrorThreshold : this . options . brokerConnectRetryErrorThreshold
99
100
} ) ;
100
101
101
102
this . brokerEngineClient . on ( 'error' , function ( err ) {
@@ -107,8 +108,8 @@ SCWorker.prototype._init = function (options) {
107
108
}
108
109
self . _errorDomain . emit ( 'error' , error ) ;
109
110
} ) ;
110
- this . brokerEngineClient . on ( 'warning' , function ( ) {
111
- self . warningHandler . apply ( self , arguments ) ;
111
+ this . brokerEngineClient . on ( 'warning' , function ( warning ) {
112
+ self . warningHandler ( warning ) ;
112
113
} ) ;
113
114
this . exchange = this . global = this . brokerEngineClient . exchange ( ) ;
114
115
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " socketcluster" ,
3
3
"description" : " SocketCluster - A Highly parallelized WebSocket server cluster to make the most of multi-core machines/instances." ,
4
- "version" : " 6.7.0 " ,
4
+ "version" : " 6.7.1 " ,
5
5
"homepage" : " http://socketcluster.io" ,
6
6
"contributors" : [
7
7
{
20
20
"inquirer" : " 1.1.3" ,
21
21
"minimist" : " 1.1.0" ,
22
22
"sc-auth" : " ~4.1.1" ,
23
- "sc-broker-cluster" : " ~4.2.0 " ,
23
+ "sc-broker-cluster" : " ~4.2.2 " ,
24
24
"sc-domain" : " ~1.0.1" ,
25
25
"sc-emitter" : " ~1.1.0" ,
26
26
"sc-errors" : " ~1.3.3" ,
Original file line number Diff line number Diff line change 18
18
"sc-hot-reboot" : " ~1.0.0" ,
19
19
"scc-broker-client" : " ~1.4.0" ,
20
20
"serve-static" : " 1.11.2" ,
21
- "socketcluster" : " ~6.7.0 " ,
21
+ "socketcluster" : " ~6.7.1 " ,
22
22
"socketcluster-client" : " ~6.3.0"
23
23
},
24
24
"keywords" : [
You can’t perform that action at this time.
0 commit comments