Remove unnecessary event loop match arms

This commit is contained in:
Brian Tarricone 2021-08-31 00:09:17 -07:00
parent f65a0f7fdc
commit aefd8cde25

View File

@ -234,8 +234,7 @@ async fn run_event_loop(
warn!("Topic {} not found in mappings", publish.topic); warn!("Topic {} not found in mappings", publish.topic);
} }
} }
Ok(Event::Incoming(_event)) => (), Ok(_) => (),
Ok(Event::Outgoing(_event)) => (),
Err(err) => warn!("Error from MQTT loop: {:#?}", err), Err(err) => warn!("Error from MQTT loop: {:#?}", err),
} }
} }