Aaronontheweb on dev
Fix ClusterSpec CoordinatedShut… (compare)
Arkatufus on dev
harden HubSpec duration (#6030)… (compare)
Arkatufus on nuget
Delete legacy `.nuget` directory Update azure-pipeline.template.… Bumps tests to .NET 6 (#270) and 6 more (compare)
var creditor = Context.ActorOf(PaymentCreditor.GetProps());
service.Ask(AccountCommands.GetIdentity(state.AccountId))
.PipeTo(creditor, success: m => PaymentProcessCommands.Credit(Id, m, state.Description, state.Amount));
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?