From a0c120f072b13af437b72a62f2e9f8c3096b58b3 Mon Sep 17 00:00:00 2001 From: Gregorius Soedharmo Date: Wed, 13 Apr 2022 22:52:45 +0700 Subject: [PATCH] Make ActorSystemImpl.Abort skip the CoordinatedShutdown check --- src/core/Akka/Actor/Internal/ActorSystemImpl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Akka/Actor/Internal/ActorSystemImpl.cs b/src/core/Akka/Actor/Internal/ActorSystemImpl.cs index ed08b4acefa..1621ba3eceb 100644 --- a/src/core/Akka/Actor/Internal/ActorSystemImpl.cs +++ b/src/core/Akka/Actor/Internal/ActorSystemImpl.cs @@ -199,7 +199,7 @@ public override IActorRef SystemActorOf(string name = null) public override void Abort() { Aborting = true; - Terminate(); + FinalTerminate(); // Skip CoordinatedShutdown check and aggressively shutdown the ActorSystem } /// Starts this system