Increase time limits in CircuitBreakerMTSpec, see #3243
This commit is contained in:
parent
7094daf313
commit
1cd4d2206c
1 changed files with 2 additions and 2 deletions
|
|
@ -12,8 +12,8 @@ import scala.annotation.tailrec
|
|||
class CircuitBreakerMTSpec extends AkkaSpec {
|
||||
implicit val ec = system.dispatcher
|
||||
"A circuit breaker being called by many threads" must {
|
||||
val callTimeout = 1.second.dilated
|
||||
val resetTimeout = 2.seconds.dilated
|
||||
val callTimeout = 2.second.dilated
|
||||
val resetTimeout = 3.seconds.dilated
|
||||
val maxFailures = 5
|
||||
val breaker = new CircuitBreaker(system.scheduler, maxFailures, callTimeout, resetTimeout)
|
||||
val numberOfTestCalls = 100
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue