diff --git a/src/config.rs b/src/config.rs index 74b0007..a652975 100644 --- a/src/config.rs +++ b/src/config.rs @@ -43,13 +43,7 @@ pub fn get(current_session: Option<&str>) -> KubeConfigs { conifg.current_context = kubeconfig.current_context.clone(); } } - Err(err) => { - eprintln!( - "Failed to load Kubeconfig from '{}': {}", - path.display(), - err - ); - } + Err(_) => {} } }