mirror of
https://github.com/arampoire/onetun.git
synced 2025-12-01 00:00:24 -05:00
Proof of concept for using crossbeam queues instead of VecDequeue for IP device
This commit is contained in:
parent
648154b5ee
commit
cdcd3ee8da
4 changed files with 36 additions and 18 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue