ci: Fix performance step in CI (#9922)

This commit is contained in:
Manuel
2025-11-09 02:18:20 +01:00
committed by GitHub
parent b73ebac5c9
commit 818824f6fc
3 changed files with 4 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ const MONGODB_URI = process.env.MONGODB_URI || 'mongodb://localhost:27017/parse_
const SERVER_URL = 'http://localhost:1337/parse';
const APP_ID = 'benchmark-app-id';
const MASTER_KEY = 'benchmark-master-key';
const ITERATIONS = parseInt(process.env.BENCHMARK_ITERATIONS || '10000', 10);
const ITERATIONS = parseInt(process.env.BENCHMARK_ITERATIONS || '1000', 10);
// Parse Server instance
let parseServer;