Radish alpha
r
Radicle CI broker
Radicle
Git (anonymous pull)
Log in to clone via SSH
fix: use std:io:Error for error type from node event subscription
Lars Wirzenius committed 2 years ago
commit da51901b85236024018f050217ef8af99df50f3d
parent c73447a74506bac36fa67777cfb398c2663972af
1 file changed +1 -1
modified src/event.rs
@@ -19,7 +19,7 @@ use crate::filter::{BrokerEvent, EventFilter};
/// filter are returned. See [`NodeEventSource::allow`] and
/// [`EventFilter`].
pub struct NodeEventSource {
-
    events: Box<dyn Iterator<Item = Result<Event, radicle::node::Error>>>,
+
    events: Box<dyn Iterator<Item = Result<Event, std::io::Error>>>,
    allowed: Vec<EventFilter>,
}