We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bb32cb commit aee94d3Copy full SHA for aee94d3
src/contrib/cluster/Akka.Cluster.Sharding.Tests/SupervisionSpec.cs
@@ -7,6 +7,7 @@
7
8
using System;
9
using System.Globalization;
10
+using System.Threading;
11
using Akka.Actor;
12
using Akka.Configuration;
13
using Akka.Event;
@@ -177,6 +178,7 @@ public void SupervisionSpec_for_a_sharded_actor_must_allow_passivation_and_early
177
178
region.Tell(new Msg(10, "passivate"));
179
ExpectTerminated(response.Self);
180
181
+ Thread.Sleep(200);
182
region.Tell(new Msg(10, "hello"));
183
ExpectMsg<Response>(TimeSpan.FromSeconds(20));
184
}
0 commit comments