Skip to content

Commit a3b58da

Browse files
committed
Add fix for close room
1 parent 17f60e5 commit a3b58da

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

collab/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ func handleMessages(
321321
closeMessage := Message{
322322
RoomID: client.roomID,
323323
Content: "The session has been closed by a user.",
324+
Type: msgData.Type,
324325
}
325326
targetId := msgData.UserID
326327
data, err := persistMappings.Conn.HGetAll(context.Background(), targetId).Result()

compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
peerprep:
33
build: peerprep
4-
image: modembcc/peerprep:6.0.1
4+
image: modembcc/peerprep:7.0.0
55
env_file:
66
- peerprep/.env
77
ports:
@@ -124,7 +124,7 @@ services:
124124

125125
collab:
126126
build: collab
127-
image: modembcc/collab:6.0.1
127+
image: modembcc/collab:7.0.1
128128
env_file:
129129
- collab/.env
130130
ports:
@@ -150,7 +150,7 @@ services:
150150

151151
comms:
152152
build: comms
153-
image: modembcc/comms:6.0.0
153+
image: modembcc/comms:7.0.0
154154
#env_file:
155155
#- comms/.env
156156
ports:

kubernetes/collab-service-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: collab
16-
image: modembcc/collab:6.0.1
16+
image: modembcc/collab:7.0.1
1717
imagePullPolicy: Always
1818
env:
1919
- name: PORT

kubernetes/comms-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: comms
16-
image: modembcc/comms:6.0.0
16+
image: modembcc/comms:7.0.0
1717
imagePullPolicy: Always
1818
ports:
1919
- containerPort: 4001

kubernetes/peerprep-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: peerprep
16-
image: modembcc/peerprep:6.0.1
16+
image: modembcc/peerprep:7.0.0
1717
imagePullPolicy: Always
1818
env:
1919
- name: NEXT_PUBLIC_QUESTION_SERVICE

0 commit comments

Comments
 (0)