fix(runtime): drop OpcUaProbeResult in redundancy-topic subscribers (no dead-letter)

This commit is contained in:
Joseph Doherty
2026-06-19 00:32:03 -04:00
parent 084d73ea2b
commit de6ce147fc
4 changed files with 121 additions and 0 deletions
@@ -190,6 +190,9 @@ public sealed class ScriptedAlarmHostActor : ReceiveActor
// A LoadAsync cancelled by PostStop's _cts pipes back this marker. The actor is stopping, so
// there's nothing to do — swallow it quietly (no Warning, no dead letter).
Receive<AlarmsLoadCanceled>(_ => { });
// The redundancy-state topic also carries OpcUaProbeResult (OpcUaPublishActor peer-probes).
// We don't consume it here — drop it so it doesn't dead-letter (matches PeerProbeSupervisor).
Receive<ZB.MOM.WW.OtOpcUa.Runtime.Health.PeerOpcUaProbeActor.OpcUaProbeResult>(_ => { });
// DPS Subscribe (PreStart) acks back here once the mediator has registered Self on the topic.
// No-op — the subscription is live the moment the ack arrives; we only need to keep it off the
// dead-letter log. Matches OpcUaPublishActor / DriverHostActor's SubscribeAck convention.