Skip to content

Commit

Permalink
Bump OutputDirectoryLockTests wait timeout to try and mitigate flakiness
Browse files Browse the repository at this point in the history
Seems the 30s `retryMax` is timing out sometimes. Not sure if it's actually stuck or not, but if not bumping it to 60s should help
  • Loading branch information
lihaoyi authored Oct 10, 2024
1 parent a4d3e94 commit fe6ac67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ object OutputDirectoryLockTests extends UtestIntegrationTestSuite {
override def utestAfterAll(): Unit = {
pool.shutdown()
}
implicit val retryMax: RetryMax = RetryMax(30000.millis)
implicit val retryMax: RetryMax = RetryMax(60000.millis)
implicit val retryInterval: RetryInterval = RetryInterval(50.millis)
def tests: Tests = Tests {
test("basic") - integrationTest { tester =>
Expand Down

0 comments on commit fe6ac67

Please sign in to comment.