Skip to content

Commit

Permalink
revert: Disable task runner by default
Browse files Browse the repository at this point in the history
Postponed to v2
  • Loading branch information
tomi committed Jan 22, 2025
1 parent 024ada8 commit 5890bdb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/@n8n/config/src/configs/runners.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type TaskRunnerMode = 'internal' | 'external';
@Config
export class TaskRunnersConfig {
@Env('N8N_RUNNERS_ENABLED')
enabled: boolean = true;
enabled: boolean = false;

@Env('N8N_RUNNERS_MODE')
mode: TaskRunnerMode = 'internal';
Expand Down
2 changes: 1 addition & 1 deletion packages/@n8n/config/test/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ describe('GlobalConfig', () => {
},
},
taskRunners: {
enabled: true,
enabled: false,
mode: 'internal',
path: '/runners',
authToken: '',
Expand Down

0 comments on commit 5890bdb

Please sign in to comment.