Skip to content

Commit

Permalink
fix(ci): Increase timeout to 6 seconds on restart tests
Browse files Browse the repository at this point in the history
When fingerprints are missing, it takes much longer to run these
tests, and 3 seconds may not be long enough to exit on slower
runners
  • Loading branch information
sgillespie authored and kderme committed May 9, 2024
1 parent 5e54703 commit b6f8fc5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ migrateAndPruneRestart =
newEnv = dbSync {dbSyncParams = newParams}
startDBSync newEnv
-- There is a slight delay before the flag is checked
threadDelay 3_000_000
threadDelay 6_000_000
-- Expected to fail
checkStillRuns dbSync
where
Expand Down Expand Up @@ -419,7 +419,7 @@ pruneRestartMissingFlag =
newEnv = dbSync {dbSyncParams = newParams}
startDBSync newEnv
-- There is a slight delay before the flag is checked
threadDelay 3_000_000
threadDelay 6_000_000
-- Expected to fail
checkStillRuns dbSync
where
Expand Down Expand Up @@ -448,7 +448,7 @@ bootstrapRestartMissingFlag =
newEnv = dbSync {dbSyncParams = newParams}
startDBSync newEnv
-- There is a slight delay befor the flag is checked
threadDelay 3_000_000
threadDelay 6_000_000
-- Expected to fail
checkStillRuns dbSync
where
Expand Down

0 comments on commit b6f8fc5

Please sign in to comment.