battery: disable render every 100ms

our multicast poller was causing this

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2025-08-04 11:29:03 -07:00
parent 48a11b9bab
commit 0770bab37c

View File

@@ -135,7 +135,7 @@ pub fn setup_multicast_relay(
std::thread::spawn(move || {
let mut events = Events::with_capacity(1);
loop {
if let Err(err) = poll.poll(&mut events, Some(Duration::from_millis(100))) {
if let Err(err) = poll.poll(&mut events, None) {
error!("multicast socket poll error: {err}. ending multicast poller.");
return;
}