Remove useless maintenance of node_site
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Alex 2023-01-11 22:24:35 +01:00
parent f768217080
commit 7c8dcd7aa7
Signed by: lx
GPG Key ID: 0E496D15096376BE
1 changed files with 0 additions and 5 deletions

View File

@ -133,8 +133,6 @@ pub fn spawn_dns_config_task(
let mut nodes = HashMap::new();
let mut watches = FuturesUnordered::<BoxFuture<'static, (String, Result<_>)>>::new();
let mut node_site = HashMap::new();
while !*must_exit.borrow() {
let list_nodes = select! {
ln = consul.list_nodes() => ln,
@ -157,9 +155,6 @@ pub fn spawn_dns_config_task(
(node, res)
}));
}
if let Some(site) = consul_node.meta.get("site") {
node_site.insert(node.clone(), site.clone());
}
}
}
Err(e) => {