mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Fixes local clients receiving inconsistent data updates. Data was only flushed to local clients on incoming websocket data (or when explicitly flushed), so local clients on a quiet server would stop receiving updates. Revert some changes from #7997. Instead of relying on periodic sends, always immediately send local data updates to the wire for lower latency. This means that on local clients, the periodic update rate and sendAll settings will be ignored, as all data updates will be sent immediately.