small simplify

This commit is contained in:
Alex 2021-04-05 23:21:25 +02:00
parent 7b85056942
commit 0f192a96b5
No known key found for this signature in database
GPG Key ID: EDABF9711E244EB1
1 changed files with 1 additions and 3 deletions

View File

@ -522,7 +522,6 @@ impl System {
.broadcast(Message::AdvertiseConfig(adv.clone()), PING_TIMEOUT)
.map(Ok),
);
self.background.spawn(self.clone().save_network_config());
}
@ -660,10 +659,9 @@ impl System {
}
}
let status = Arc::new(status);
updaters
.update_status
.send(status.clone())
.send(Arc::new(status))
.expect("Could not update internal membership status");
}
}