increase delay before shutting down persistence samples, #20005

This commit is contained in:
Patrik Nordwall 2016-04-14 11:36:24 +02:00
parent 66a0aa280d
commit 1a6057eeb5
9 changed files with 9 additions and 9 deletions

View file

@ -55,6 +55,6 @@ object PersistentActorExample extends App {
persistentActor ! Cmd("buzz")
persistentActor ! "print"
Thread.sleep(1000)
Thread.sleep(10000)
system.terminate()
}

View file

@ -48,6 +48,6 @@ object PersistentActorFailureExample extends App {
// etc ...
Thread.sleep(1000)
Thread.sleep(10000)
system.terminate()
}

View file

@ -43,6 +43,6 @@ object SnapshotExample extends App {
persistentActor ! "d"
persistentActor ! "print"
Thread.sleep(1000)
Thread.sleep(10000)
system.terminate()
}