Skip to content

Commit

Permalink
Make ActorSystemImpl.Abort skip the CoordinatedShutdown check (#5839)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus authored Apr 13, 2022
1 parent 8fec4ba commit d0ec3b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Akka/Actor/Internal/ActorSystemImpl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public override IActorRef SystemActorOf<TActor>(string name = null)
public override void Abort()
{
Aborting = true;
Terminate();
FinalTerminate(); // Skip CoordinatedShutdown check and aggressively shutdown the ActorSystem
}

/// <summary>Starts this system</summary>
Expand Down

0 comments on commit d0ec3b8

Please sign in to comment.