Skip to content

Commit

Permalink
Increase validator retries
Browse files Browse the repository at this point in the history
  • Loading branch information
guibescos committed Nov 18, 2023
1 parent 4dba065 commit e0be2bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion staking/tests/utils/before.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export async function startValidatorRaw(portNumber: number, otherArgs: string) {
} catch (e) {
// Bound the number of retries so the tests don't hang if there's some problem blocking
// the connection to the validator.
if (numRetries == 10) {
if (numRetries == 30) {
console.log(
`Failed to start validator or connect to running validator. Caught exception: ${e}`
);
Expand Down

0 comments on commit e0be2bf

Please sign in to comment.