Undoes the cadence "fix" - that deadlocks the UI under high load. Makes the branch safe again while we find a proper solution.

This commit is contained in:
Herbert Wolverson 2024-07-09 15:23:20 -05:00
parent 1c1fda7434
commit 0af3ab3b72

View File

@ -238,7 +238,7 @@ impl NetworkJson {
/// doing so will provide valid data.
pub fn get_nodes_when_ready(&self) -> &Vec<NetworkJsonNode> {
//log::warn!("Awaiting the network tree");
atomic_wait::wait(&self.busy, 1);
//atomic_wait::wait(&self.busy, 1);
//log::warn!("Acquired");
&self.nodes
}