refactor(benchmark): Rename scaling mode setups (#10783)

This commit is contained in:
Tomi Turtiainen 2024-09-12 13:02:56 +03:00 committed by GitHub
parent c133a6ef89
commit b2b6190cc0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 7 additions and 12 deletions

View file

@ -4,8 +4,7 @@ import path from 'path';
import { fs } from 'zx'; import { fs } from 'zx';
/** /**
* Creates the needed directories for the queue setup so their * Creates the needed directories so the permissions get set correctly.
* permissions get set correctly.
*/ */
export function setup({ runDir }) { export function setup({ runDir }) {
const neededDirs = ['n8n', 'postgres']; const neededDirs = ['n8n', 'postgres'];

View file

@ -4,8 +4,7 @@ import path from 'path';
import { fs } from 'zx'; import { fs } from 'zx';
/** /**
* Creates the needed directories for the queue setup so their * Creates the needed directories so the permissions get set correctly.
* permissions get set correctly.
*/ */
export function setup({ runDir }) { export function setup({ runDir }) {
const neededDirs = ['n8n-worker1', 'n8n-worker2', 'n8n-main1', 'n8n-main2', 'postgres']; const neededDirs = ['n8n-worker1', 'n8n-worker2', 'n8n-main1', 'n8n-main2', 'postgres'];

View file

@ -4,8 +4,7 @@ import path from 'path';
import { fs } from 'zx'; import { fs } from 'zx';
/** /**
* Creates the needed directories for the queue setup so their * Creates the needed directories so the permissions get set correctly.
* permissions get set correctly.
*/ */
export function setup({ runDir }) { export function setup({ runDir }) {
const neededDirs = ['n8n-worker1', 'n8n-worker2', 'n8n-main', 'postgres']; const neededDirs = ['n8n-worker1', 'n8n-worker2', 'n8n-main', 'postgres'];

View file

@ -4,8 +4,7 @@ import path from 'path';
import { fs } from 'zx'; import { fs } from 'zx';
/** /**
* Creates the needed directories for the queue setup so their * Creates the needed directories so the permissions get set correctly.
* permissions get set correctly.
*/ */
export function setup({ runDir }) { export function setup({ runDir }) {
const neededDirs = ['n8n']; const neededDirs = ['n8n'];

View file

@ -4,8 +4,7 @@ import path from 'path';
import { fs } from 'zx'; import { fs } from 'zx';
/** /**
* Creates the needed directories for the queue setup so their * Creates the needed directories so the permissions get set correctly.
* permissions get set correctly.
*/ */
export function setup({ runDir }) { export function setup({ runDir }) {
const neededDirs = ['n8n']; const neededDirs = ['n8n'];

View file

@ -37,9 +37,9 @@ async function main() {
const duration = argv.duration; const duration = argv.duration;
const hasN8nLicense = !!n8nLicenseCert || !!n8nLicenseActivationKey; const hasN8nLicense = !!n8nLicenseCert || !!n8nLicenseActivationKey;
if (n8nSetupToUse === 'scaling' && !hasN8nLicense) { if (n8nSetupToUse === 'scaling-multi-main' && !hasN8nLicense) {
console.error( console.error(
'n8n license is required to run the scaling setup. Please provide N8N_LICENSE_CERT or N8N_LICENSE_ACTIVATION_KEY', 'n8n license is required to run the multi-main scaling setup. Please provide N8N_LICENSE_CERT or N8N_LICENSE_ACTIVATION_KEY (and N8N_LICENSE_TENANT_ID if needed)',
); );
process.exit(1); process.exit(1);
} }