Skip to content

Commit c8b5448

Browse files
sid-rlclaude
andauthored
fix(test): increase SDK maxRetries from 1 to 3 for smoketest resilience (#786)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 128b60b commit c8b5448

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/smoketests/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function makeClient(overrides: Partial<ConstructorParameters<typeof Runlo
99
baseURL,
1010
bearerToken,
1111
timeout: 120_000,
12-
maxRetries: 1,
12+
maxRetries: 3,
1313
...overrides,
1414
});
1515
}
@@ -19,7 +19,7 @@ export function makeClientSDK() {
1919
bearerToken: process.env['RUNLOOP_API_KEY'],
2020
baseURL: process.env['RUNLOOP_BASE_URL'],
2121
timeout: 120_000,
22-
maxRetries: 1,
22+
maxRetries: 3,
2323
});
2424
}
2525

0 commit comments

Comments
 (0)