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

@ -129,7 +129,7 @@ public class PersistentActorExample {
persistentActor.tell(new Cmd("buzz"), null);
persistentActor.tell("print", null);
Thread.sleep(1000);
Thread.sleep(10000);
system.terminate();
}
}

View file

@ -70,7 +70,7 @@ public class PersistentActorFailureExample {
// etc ...
Thread.sleep(1000);
Thread.sleep(10000);
system.terminate();
}
}

View file

@ -95,7 +95,7 @@ public class SnapshotExample {
persistentActor.tell("d", null);
persistentActor.tell("print", null);
Thread.sleep(1000);
Thread.sleep(10000);
system.terminate();
}
}