From 0af3ab3b72c9ff058805f9c46a31f699cf717a19 Mon Sep 17 00:00:00 2001 From: Herbert Wolverson Date: Tue, 9 Jul 2024 15:23:20 -0500 Subject: [PATCH] Undoes the cadence "fix" - that deadlocks the UI under high load. Makes the branch safe again while we find a proper solution. --- src/rust/lqos_config/src/network_json/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rust/lqos_config/src/network_json/mod.rs b/src/rust/lqos_config/src/network_json/mod.rs index 9d377575..36d96a16 100644 --- a/src/rust/lqos_config/src/network_json/mod.rs +++ b/src/rust/lqos_config/src/network_json/mod.rs @@ -238,7 +238,7 @@ impl NetworkJson { /// doing so will provide valid data. pub fn get_nodes_when_ready(&self) -> &Vec { //log::warn!("Awaiting the network tree"); - atomic_wait::wait(&self.busy, 1); + //atomic_wait::wait(&self.busy, 1); //log::warn!("Acquired"); &self.nodes }