Skip to content

Commit

Permalink
disable Actor_PipeTo_should_not_be_delayed_by_async_receive (#5271)
Browse files Browse the repository at this point in the history
so the `PipeTo` _can_ be delayed because it's running inside the `ActorTaskScheduler`, which also schedules the `Task.Delay` below.
  • Loading branch information
Aaronontheweb authored Sep 7, 2021
1 parent 8d5de94 commit 1f779fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ public void ActorTaskScheduler_reentrancy_should_not_be_possible()
ExpectNoMsg(1000);
}

[Fact]
[Fact(Skip = "Racy - both Tasks run inside the same scheduler with max concurrency == 1")]
public void Actor_PipeTo_should_not_be_delayed_by_async_receive()
{
var actor = Sys.ActorOf(Props.Create(() => new AsyncPipeToDelayActor("pid")));
Expand Down

0 comments on commit 1f779fe

Please sign in to comment.