mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix: Pass k6 api token correctly (no-changelog) (#10536)
This commit is contained in:
@@ -88,13 +88,22 @@ async function runBenchmarksOnVm(config, benchmarkEnv) {
|
|||||||
|
|
||||||
console.log('Running benchmarks...');
|
console.log('Running benchmarks...');
|
||||||
const runScriptPath = path.join(scriptsDir, 'runOnVm.mjs');
|
const runScriptPath = path.join(scriptsDir, 'runOnVm.mjs');
|
||||||
await sshClient.ssh(
|
|
||||||
`npx zx ${runScriptPath} --n8nDockerTag=${config.n8nTag} --benchmarkDockerTag=${config.benchmarkTag} ${config.n8nSetupToUse}`,
|
const flags = {
|
||||||
{
|
n8nDockerTag: config.n8nTag,
|
||||||
// Test run should always log its output
|
benchmarkDockerTag: config.benchmarkTag,
|
||||||
verbose: true,
|
k6ApiToken: config.k6ApiToken,
|
||||||
},
|
};
|
||||||
);
|
|
||||||
|
const flagsString = Object.entries(flags)
|
||||||
|
.filter(([, value]) => value !== undefined)
|
||||||
|
.map(([key, value]) => `--${key}=${value}`)
|
||||||
|
.join(' ');
|
||||||
|
|
||||||
|
await sshClient.ssh(`npx zx ${runScriptPath} ${flagsString} ${config.n8nSetupToUse}`, {
|
||||||
|
// Test run should always log its output
|
||||||
|
verbose: true,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function ensureVmIsReachable(sshClient) {
|
async function ensureVmIsReachable(sshClient) {
|
||||||
|
|||||||
Reference in New Issue
Block a user