Skip to content

Commit

Permalink
Removed forgotten dbg! macro call
Browse files Browse the repository at this point in the history
  • Loading branch information
notCamelCaseName committed Jan 7, 2025
1 parent 0e2f728 commit cc7d620
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exporters/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ pub fn get_docker_client() -> Result<Docker, std::io::Error> {

#[cfg(feature = "containers")]
pub fn get_kubernetes_client() -> Result<Kubernetes, KubernetesError> {
let kube_config_path = dbg!(std::env::var("KUBECONFIG").ok());
let kube_config_path = std::env::var("KUBECONFIG").ok();
match Kubernetes::connect(
kube_config_path,
None,
Expand Down

0 comments on commit cc7d620

Please sign in to comment.