mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-11 15:51:29 +03:00
sys info
This commit is contained in:
@@ -89,7 +89,9 @@ impl RendezvousMediator {
|
||||
for host in servers.clone() {
|
||||
let server = server.clone();
|
||||
futs.push(tokio::spawn(async move {
|
||||
allow_err!(Self::start(server, host).await);
|
||||
if let Err(err) = Self::start(server, host).await {
|
||||
log::error!("rendezvous mediator error: {err}");
|
||||
}
|
||||
// SHOULD_EXIT here is to ensure once one exits, the others also exit.
|
||||
SHOULD_EXIT.store(true, Ordering::SeqCst);
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user