Skip to content

Commit

Permalink
Lower Timeout for the Akka System (neo-project#3587)
Browse files Browse the repository at this point in the history
* Lower Timeout for the Akka System

* Update src/Neo/NeoSystem.cs

Co-authored-by: Shargon <[email protected]>

---------

Co-authored-by: Shargon <[email protected]>
  • Loading branch information
cschuchardt88 and shargon authored Nov 20, 2024
1 parent 456f168 commit cd6667e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Neo/NeoSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ public void EnsureStopped(IActorRef actor)
using Inbox inbox = Inbox.Create(ActorSystem);
inbox.Watch(actor);
ActorSystem.Stop(actor);
inbox.Receive(TimeSpan.FromMinutes(5));
inbox.Receive(TimeSpan.FromSeconds(30));
}

/// <summary>
Expand Down

0 comments on commit cd6667e

Please sign in to comment.