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
@@ -84,6 +84,9 @@ public sealed class HistorianAdapterActor : ReceiveActor
// cache this node's role so the historize gate can scope the durable sink enqueue to the Primary.
// The PubSub Subscribe acks (redundancy-state + alerts) are acked back to Self (no-op below).
Receive<RedundancyStateChanged>(OnRedundancyStateChanged);
// 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>(_ => { });
Receive<SubscribeAck>(_ => { });
}