Skip to content

Commit

Permalink
fix(benchmark): Fix benchmark license tenant (#10798)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomi authored and riascho committed Sep 23, 2024
1 parent d65cef1 commit 6e38573
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/@n8n/benchmark/scripts/run-for-n8n-setup.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ async function main() {
argv.resultWebhookAuthHeader || process.env.BENCHMARK_RESULT_WEBHOOK_AUTH_HEADER || undefined;
const baseRunDir = argv.runDir || process.env.RUN_DIR || '/n8n';
const n8nLicenseCert = argv.n8nLicenseCert || process.env.N8N_LICENSE_CERT || undefined;
const n8nLicenseActivationKey = process.env.N8N_LICENSE_ACTIVATION_KEY || '';
const n8nLicenseTenantId = argv.n8nLicenseTenantId || process.env.N8N_LICENSE_TENANT_ID || '';
const n8nLicenseActivationKey = process.env.N8N_LICENSE_ACTIVATION_KEY || undefined;
const n8nLicenseTenantId = argv.n8nLicenseTenantId || process.env.N8N_LICENSE_TENANT_ID || '1';
const envTag = argv.env || 'local';
const vus = argv.vus;
const duration = argv.duration;
Expand Down

0 comments on commit 6e38573

Please sign in to comment.