Proof of concept for using crossbeam queues instead of VecDequeue for IP device

This commit is contained in:
Aram 🍐 2022-01-12 03:11:00 -05:00
parent 648154b5ee
commit cdcd3ee8da
4 changed files with 36 additions and 18 deletions

View file

@ -127,8 +127,11 @@ impl BusEndpoint {
return event;
}
}
Err(_) => {
error!("Failed to read event bus from endpoint #{}", self.id);
Err(e) => {
error!(
"Failed to read event bus from endpoint #{}: {:?}",
self.id, e
);
return futures::future::pending().await;
}
}