increase timeout for setting up SharedLeveldbStore, #20056

* SharedLeveldbStore is opening leveldb in preStart so that might
  sometimes take more than 3 seconds, I guess
* the test looks correct
This commit is contained in:
Patrik Nordwall 2016-05-10 15:00:58 +02:00
parent 649f68e050
commit 9f32b77bde
5 changed files with 5 additions and 5 deletions

View file

@ -147,7 +147,7 @@ abstract class ClusterShardingFailureSpec(config: ClusterShardingFailureSpecConf
runOn(first, second) {
system.actorSelection(node(controller) / "user" / "store") ! Identify(None)
val sharedStore = expectMsgType[ActorIdentity].ref.get
val sharedStore = expectMsgType[ActorIdentity](10.seconds).ref.get
SharedLeveldbJournal.setStore(sharedStore, system)
}