Merge pull request #22172 from akka/wip-samples-coordinated-patriknw

Don't shutdown ActorSystem in tests
This commit is contained in:
Patrik Nordwall 2017-01-20 13:58:25 +01:00 committed by GitHub
commit 5de92866ee
10 changed files with 54 additions and 1 deletions

View file

@ -833,6 +833,14 @@ those shutting down Akka Remoting (Artery).
.. includecode:: code/docs/actorlambda/ActorDocTest.java#coordinated-shutdown-jvm-hook
For some tests it might be undesired to terminate the ``ActorSystem`` via ``CoordinatedShutdown``.
You can disable that by adding the following to the configuration of the ``ActorSystem`` that is
used in the test::
# Don't terminate ActorSystem via CoordinatedShutdown in tests
akka.coordinated-shutdown.terminate-actor-system = off
akka.coordinated-shutdown.run-by-jvm-shutdown-hook = off
akka.cluster.run-coordinated-shutdown-when-down = off
.. _actor-hotswap-lambda: