Skip to content

Commit d04744a

Browse files
committed
Fix
1 parent fec28cc commit d04744a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

components/server/src/messaging/redis-subscriber.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,7 @@ export class RedisSubscriber implements LocalMessageBroker {
4848
protected readonly disposables = new DisposableCollection();
4949

5050
async start(): Promise<void> {
51-
<<<<<<< HEAD
52-
const channels = [WorkspaceInstanceUpdatesChannel, PrebuildUpdatesChannel];
53-
=======
54-
const channels = [WorkspaceInstanceUpdatesChannel, HeadlessUpdatesChannel];
55-
>>>>>>> 65ff502c2 ([server] Broadcast headless updates to subscribers)
51+
const channels = [WorkspaceInstanceUpdatesChannel, PrebuildUpdatesChannel, HeadlessUpdatesChannel];
5652

5753
for (const chan of channels) {
5854
await this.redis.subscribe(chan);

0 commit comments

Comments
 (0)