Skip to content

Commit 97bb64b

Browse files
authored
Merge branch 'alpha' into moumouls/concurrent-include
2 parents 0bef43f + 133660f commit 97bb64b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/ci-performance.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,7 @@ jobs:
304304
echo "" >> comment.md
305305
echo "</details>" >> comment.md
306306
echo "" >> comment.md
307-
echo "*Benchmarks ran with ${BENCHMARK_ITERATIONS:-10000} iterations per test on Node.js ${{ env.NODE_VERSION }} (production mode, CPU pinned)*" >> comment.md
308-
echo "" >> comment.md
309-
echo "> **Note:** Using 10k iterations with CPU affinity for measurement stability. Thresholds: ⚠️ >25%, ❌ >50%." >> comment.md
307+
echo "> **Note:** Thresholds: ⚠️ >25%, ❌ >50%." >> comment.md
310308
311309
- name: Comment PR with results
312310
if: github.event_name == 'pull_request'

benchmark/performance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const MONGODB_URI = process.env.MONGODB_URI || 'mongodb://localhost:27017/parse_
1919
const SERVER_URL = 'http://localhost:1337/parse';
2020
const APP_ID = 'benchmark-app-id';
2121
const MASTER_KEY = 'benchmark-master-key';
22-
const ITERATIONS = parseInt(process.env.BENCHMARK_ITERATIONS || '10000', 10);
22+
const ITERATIONS = parseInt(process.env.BENCHMARK_ITERATIONS || '1000', 10);
2323

2424
// Parse Server instance
2525
let parseServer;

0 commit comments

Comments
 (0)