mapper: fix phantom updateSentPeers on disconnected nodes
When send() is called on a node with zero active connections (disconnected but kept for rapid reconnection), it returns nil (success). handleNodeChange then calls updateSentPeers, recording peers as delivered when no client received the data. This corrupts lastSentPeers: future computePeerDiff calculations produce wrong results because they compare against phantom state. After reconnection, the node's initial map resets lastSentPeers, but any changes processed during the disconnect window leave stale entries that cause asymmetric peer visibility. Return errNoActiveConnections from send() when there are no connections. handleNodeChange treats this as a no-op (the change was generated but not deliverable) and skips updateSentPeers, keeping lastSentPeers consistent with what clients actually received.
K
Kristoffer Dalby committed
3587225a88d1ca85b1b7111430f8a301f423b291
Parent: 9371b4e
Committed by Kristoffer Dalby <kristoffer@dalby.cc>
on 4/10/2026, 12:18:56 PM