dependabot[bot] on nuget
Bump PublicApiGenerator from 9.… (compare)
dependabot[bot] on nuget
Bump FluentAssertions from 5.10… (compare)
dependabot[bot] on nuget
Bump Fsharp.Core from 6.0.1 to … (compare)
dependabot[bot] on nuget
Bump NUnit from 3.7.1 to 3.13.3… (compare)
dependabot[bot] on nuget
Bump System.Configuration.Confi… (compare)
dependabot[bot] on nuget
Bump System.Collections.Immutab… (compare)
akka {
actor {
guardian-supervisor-strategy = "UserSupervisorExample.UserSupervisorStrategy"
}
}
namespace UserSupervisorExample
{
public class UserSupervisorStrategy : SupervisorStrategyConfigurator
{
public UserSupervisorStrategy()
{
}
public override SupervisorStrategy Create()
{
return new OneForOneStrategy((excep) =>
{
int x = 3;
x = 6;
return Directive.Restart;
});
}
}
}
TargetParameterCountException
Question: I've got a sharded entity actor. It creates a child actor to perform some duty. When this child gets stopped by the entity actor, the following log entry appears:
Akka.Actor.LocalActorRef: Message DeathWatchNotification from akka://bm2cluster/user/sharding/LoonbonVerwerking/3/d8c52c1e-4843-4092-9cc4-43ec8f774737/lbvverrijking to akka://bm2cluster/user/sharding/LoonbonVerwerking/3/d8c52c1e-4843-4092-9cc4-43ec8f774737/lbvverrijking was not delivered. 5 dead letters encountered.
Before implementing sharding, this message didn't get logged.. Any idea's?