From e0424ce9610f3ca270345e78f9ba753ce7f8fb37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Thu, 7 Nov 2024 14:05:04 +0100 Subject: [PATCH] Clarify --- packages/@n8n/config/src/configs/runners.config.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/@n8n/config/src/configs/runners.config.ts b/packages/@n8n/config/src/configs/runners.config.ts index 5c45a3603b..77efd11adb 100644 --- a/packages/@n8n/config/src/configs/runners.config.ts +++ b/packages/@n8n/config/src/configs/runners.config.ts @@ -4,11 +4,12 @@ import { Config, Env } from '../decorators'; * Modes for running a task runner: * * - In `internal_childprocess` mode, n8n launches a task runner as a child - * process and manages its lifecycle. - * - In `internal_launcher` mode, n8n runs an executable that launches a task - * runner as a child process and manages its lifecycle. + * process. n8n manages the runner's lifecycle. + * - In `internal_launcher` mode, n8n runs an + * [executable](https://github.com/n8n-io/task-runner-launcher) that launches + * a task runner as a child process. n8n manages the runner's lifecycle. * - In `external` mode, n8n does not launch the runner or manage its lifecycle. - * Rather, a third party launches the runner separately from n8n. + * Rather, a third party launches and manages the runner separately from n8n. * * Lifecycle management means that n8n launches the task runner only when needed * and shuts it down when the task runner has been idle for too long.