Skip to content

Commit 1145bc0

Browse files
authored
Fix MNTR crashing because it is using PolyFill extension method (#6768)
* Revert "Make `HandleActorTaskSchedulerMessage` method `protected virtual` (#6763)" This reverts commit 1345e58. * Fix MNTR crashing because it is using PolyFill extension method
1 parent 17e8028 commit 1145bc0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/core/Akka.Remote.TestKit/CommandLine.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static void Initialize(string[] args)
4242
var fixedArgs = new List<string>();
4343
for (var i = 1; i < args.Length - 1; ++i)
4444
{
45-
if (args[i].Equals("-Dmultinode") && args[i + 1].StartsWith('.'))
45+
if (args[i].Equals("-Dmultinode") && args[i + 1].StartsWith("."))
4646
{
4747
fixedArgs.Add(args[i] + args[i+1]);
4848
++i;

src/core/Akka/ActorState.cs

+1
Original file line numberDiff line numberDiff line change
@@ -641,3 +641,4 @@ public Receive GetCurrentBehavior()
641641
}
642642
}
643643
}
644+

0 commit comments

Comments
 (0)