File size: 280 Bytes
aec3094 | 1 2 3 4 5 6 7 8 | export class MissingAuthTokenError extends Error {
constructor() {
super(
'Missing auth token. When `N8N_RUNNERS_MODE` is `external`, it is required to set `N8N_RUNNERS_AUTH_TOKEN`. Its value should be a shared secret between the main instance and the launcher.',
);
}
}
|