increase delay before shutting down persistence samples, #20005
This commit is contained in:
parent
66a0aa280d
commit
1a6057eeb5
9 changed files with 9 additions and 9 deletions
|
|
@ -127,7 +127,7 @@ public class PersistentActorExample {
|
|||
persistentActor.tell(new Cmd("buzz"), null);
|
||||
persistentActor.tell("print", null);
|
||||
|
||||
Thread.sleep(1000);
|
||||
Thread.sleep(10000);
|
||||
system.terminate();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ public class PersistentActorFailureExample {
|
|||
|
||||
// etc ...
|
||||
|
||||
Thread.sleep(1000);
|
||||
Thread.sleep(10000);
|
||||
system.terminate();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ public class SnapshotExample {
|
|||
persistentActor.tell("d", null);
|
||||
persistentActor.tell("print", null);
|
||||
|
||||
Thread.sleep(1000);
|
||||
Thread.sleep(10000);
|
||||
system.terminate();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue