Remove connect loop
This commit is contained in:
parent
dadc13feb4
commit
f588f5d368
|
|
@ -111,10 +111,8 @@ impl ConnectCmd {
|
||||||
tail.extend_from_slice(&addrs[addrs.len() - 5..]);
|
tail.extend_from_slice(&addrs[addrs.len() - 5..]);
|
||||||
info!(addrs.first = ?head, addrs.last = ?tail);
|
info!(addrs.first = ?head, addrs.last = ?tail);
|
||||||
|
|
||||||
loop {
|
let eternity = tokio::future::pending::<()>();
|
||||||
// empty loop ensures we don't exit the application,
|
eternity.await;
|
||||||
// and this is throwaway code
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue