fix(core): Support MCP server when offloading is enabled (#18214)

This commit is contained in:
Iván Ovejero
2025-08-11 17:58:59 +02:00
committed by GitHub
parent 8a27ac0438
commit 26aed72c6e

View File

@@ -171,10 +171,6 @@ export class Start extends BaseCommand<z.infer<typeof flagsSchema>> {
scopedLogger.debug(`Host ID: ${this.instanceSettings.hostId}`); scopedLogger.debug(`Host ID: ${this.instanceSettings.hostId}`);
} }
if (process.env.OFFLOAD_MANUAL_EXECUTIONS_TO_WORKERS === 'true') {
this.needsTaskRunner = false;
}
await super.init(); await super.init();
this.activeWorkflowManager = Container.get(ActiveWorkflowManager); this.activeWorkflowManager = Container.get(ActiveWorkflowManager);