Skip to content

Commit abaa2f0

Browse files
committed
v7.1.1
1 parent 045ff60 commit abaa2f0

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

kubernetes/socketcluster-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
spec:
1212
containers:
1313
- name: socketcluster
14-
image: socketcluster/socketcluster:v7.0.2
14+
image: socketcluster/socketcluster:v7.1.1
1515
ports:
1616
- containerPort: 8000
1717
env:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "socketcluster",
33
"description": "SocketCluster - A Highly parallelized WebSocket server cluster to make the most of multi-core machines/instances.",
4-
"version": "7.1.0",
4+
"version": "7.1.1",
55
"homepage": "http://socketcluster.io",
66
"contributors": [
77
{

sample/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"sc-hot-reboot": "~1.0.0",
1919
"scc-broker-client": "~1.5.0",
2020
"serve-static": "1.11.2",
21-
"socketcluster": "~7.1.0",
21+
"socketcluster": "~7.1.1",
2222
"socketcluster-client": "~7.0.1"
2323
},
2424
"keywords": [

sample/server.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ var filesReadyPromises = [
126126
startWhenFileIsReady(masterControllerPath),
127127
startWhenFileIsReady(workerControllerPath),
128128
startWhenFileIsReady(brokerControllerPath),
129-
startWhenFileIsReady(initControllerPath)
129+
startWhenFileIsReady(initControllerPath),
130+
startWhenFileIsReady(workerClusterControllerPath)
130131
];
131132
Promise.all(filesReadyPromises)
132133
.then(() => {

0 commit comments

Comments
 (0)