From dd280a92ef4fb91073e5a30e03910129f9a14e2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Esteban=20Dimitroff=20H=C3=B3di?= Date: Thu, 7 Mar 2024 10:22:37 -0300 Subject: [PATCH] Minor code improvements --- node/tools/src/k8s.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/node/tools/src/k8s.rs b/node/tools/src/k8s.rs index 274c8f7b..d255516b 100644 --- a/node/tools/src/k8s.rs +++ b/node/tools/src/k8s.rs @@ -1,5 +1,5 @@ use crate::{config, NodeAddr}; -use anyhow::{anyhow, Context}; +use anyhow::Context; use k8s_openapi::{ api::{ apps::v1::{Deployment, DeploymentSpec}, @@ -17,7 +17,6 @@ use kube::{ }; use std::collections::BTreeMap; use std::net::SocketAddr; -use std::str::FromStr; use tokio_retry::strategy::FixedInterval; use tokio_retry::Retry; use tracing::log::info;