Skip to content

Commit

Permalink
Fix MNTR crashing because it is using PolyFill extension method (#6768)
Browse files Browse the repository at this point in the history
* Revert "Make `HandleActorTaskSchedulerMessage` method `protected virtual` (#6763)"

This reverts commit 1345e58.

* Fix MNTR crashing because it is using PolyFill extension method
  • Loading branch information
Arkatufus committed May 18, 2023
1 parent 17e8028 commit 1145bc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Akka.Remote.TestKit/CommandLine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static void Initialize(string[] args)
var fixedArgs = new List<string>();
for (var i = 1; i < args.Length - 1; ++i)
{
if (args[i].Equals("-Dmultinode") && args[i + 1].StartsWith('.'))
if (args[i].Equals("-Dmultinode") && args[i + 1].StartsWith("."))
{
fixedArgs.Add(args[i] + args[i+1]);
++i;
Expand Down
1 change: 1 addition & 0 deletions src/core/Akka/ActorState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -641,3 +641,4 @@ public Receive GetCurrentBehavior()
}
}
}

0 comments on commit 1145bc0

Please sign in to comment.