Merge pull request #29789 from johanandren/wip-29787-leveldb-recovery-slow
Increase timeout to make room for leveldb disk access slow
This commit is contained in:
commit
12110822df
2 changed files with 2 additions and 1 deletions
|
|
@ -43,6 +43,7 @@ object EventSourcedBehaviorRetentionSpec extends Matchers {
|
|||
akka.persistence.journal.plugin = "akka.persistence.journal.leveldb"
|
||||
akka.persistence.snapshot-store.plugin = "akka.persistence.snapshot-store.local"
|
||||
akka.persistence.snapshot-store.local.dir = "target/typed-persistence-${UUID.randomUUID().toString}"
|
||||
akka.actor.testkit.typed.single-expect-default = 10s # increased for slow disk on Jenkins servers
|
||||
""")
|
||||
|
||||
sealed trait Command extends CborSerializable
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@ class PerformanceSpec extends ScalaTestWithActorTestKit(ConfigFactory.parseStrin
|
|||
akka.persistence.journal.leveldb.dir = "target/journal-PerformanceSpec"
|
||||
akka.persistence.snapshot-store.plugin = "akka.persistence.snapshot-store.local"
|
||||
akka.persistence.snapshot-store.local.dir = "target/snapshots-PerformanceSpec/"
|
||||
akka.test.single-expect-default = 10s
|
||||
akka.actor.testkit.typed.single-expect-default = 10s
|
||||
""").withFallback(ConfigFactory.parseString(PerformanceSpec.config))) with AnyWordSpecLike with LogCapturing {
|
||||
|
||||
import PerformanceSpec._
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue