This commit is contained in:
R Tyler Croy 2020-02-01 03:51:47 -08:00
parent 9dcf36165c
commit b828dcce63
1 changed files with 2 additions and 1 deletions

View File

@ -139,7 +139,7 @@ impl Connection {
fn subscribe(&self, named: &str) {
let mut bus_rx = self.bus.receiver_for(named).unwrap();
tokio::task::spawn(async move {
/*tokio::task::spawn(async move {
loop {
match bus_rx.recv().await {
Ok(ev) => {
@ -160,6 +160,7 @@ impl Connection {
}
}
});
*/
}
fn dispatch(&self, _ev: Arc<msg::Output>) {