Skip to content

Commit 415aa0f

Browse files
committed
bump timeout
1 parent 175d0f5 commit 415aa0f

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3323,7 +3323,7 @@ tasks:
33233323
tags:
33243324
- run-spec-benchmark-tests
33253325
- performance
3326-
exec_timeout_secs: 3600
3326+
exec_timeout_secs: 18000
33273327
commands:
33283328
- command: expansions.update
33293329
type: setup

.evergreen/generate_evergreen_tasks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ function addPerformanceTasks() {
756756
const makePerfTaskNEW = (name, MONGODB_CLIENT_OPTIONS) => ({
757757
name,
758758
tags: ['run-spec-benchmark-tests', 'performance'],
759-
exec_timeout_secs: 3600,
759+
exec_timeout_secs: 18000,
760760
commands: [
761761
updateExpansions({
762762
NODE_LTS_VERSION: 'v22.11.0',

test/benchmarks/driver_bench/src/main.mts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,7 @@ for (const [suite, benchmarks] of Object.entries(tests)) {
9898
for (const [benchmark, benchFile] of Object.entries(benchmarks)) {
9999
console.log(snakeToCamel(path.basename(benchmark, '.mjs')));
100100

101-
const runner = child_process.fork(runnerPath, [benchFile], {
102-
stdio: 'inherit',
103-
execArgv: ['--stack-trace-limit=25']
104-
});
101+
const runner = child_process.fork(runnerPath, [benchFile], { stdio: 'inherit' });
105102

106103
const [exitCode] = await events.once(runner, 'close');
107104
if (exitCode !== 0) {

0 commit comments

Comments
 (0)