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:
Patrik Nordwall 2020-11-09 12:24:28 +01:00 committed by GitHub
commit 12110822df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -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._