Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class StructuredConcurrencyTest extends AgentTestRunner {
return true
}
})
taskScope.joinUntil(now() + 1) // Wait for a second at maximum
taskScope.joinUntil(now() + 10) // Wait for 10 seconds at maximum
result = task.get()
}
taskScope.close()
Expand Down Expand Up @@ -73,7 +73,7 @@ class StructuredConcurrencyTest extends AgentTestRunner {
taskScope.fork {
runnableUnderTrace("child3") {}
}
taskScope.joinUntil(now() + 2) // Wait for two seconds at maximum
taskScope.joinUntil(now() + 10) // Wait for 10 seconds at maximum
}
taskScope.close()

Expand Down Expand Up @@ -132,7 +132,7 @@ class StructuredConcurrencyTest extends AgentTestRunner {
taskScope.fork {
runnableUnderTrace("child2") {}
}
taskScope.joinUntil(now() + 2) // Wait for two seconds at maximum
taskScope.joinUntil(now() + 10) // Wait for 10 seconds at maximum
}
taskScope.close()

Expand Down
Loading