Skip to content

Commit

Permalink
fix: ignore error on parse
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramilito committed Oct 21, 2024
1 parent aeeb250 commit e78301c
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(_) => {}
}
}

Expand Down

0 comments on commit e78301c

Please sign in to comment.