We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e4cad0 commit e76af59Copy full SHA for e76af59
components/server/src/messaging/redis-subscriber.ts
@@ -81,9 +81,9 @@ export class RedisSubscriber implements LocalMessageBroker {
81
return this.onInstanceUpdate(JSON.parse(message) as RedisWorkspaceInstanceUpdate);
82
83
case PrebuildUpdatesChannel:
84
- const prebuildTypeEnabled = await this.isRedisPubSubByTypeEnabled("prebuild");
85
- if (!prebuildTypeEnabled) {
86
- log.debug("[redis] Redis prebuild update is disabled through feature flag", {
+ const headlessUpdateEnabled = await this.isRedisPubSubByTypeEnabled("prebuild-updatable");
+ if (!headlessUpdateEnabled) {
+ log.debug("[redis] Redis headless update is disabled through feature flag", {
87
channel,
88
message,
89
});
0 commit comments