From 806967dc96ad789afba421f12790c58ac1a117a6 Mon Sep 17 00:00:00 2001 From: Andrew Kenworthy Date: Tue, 6 Feb 2024 17:55:37 +0100 Subject: [PATCH] clippy fix --- rust/operator-binary/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/operator-binary/src/main.rs b/rust/operator-binary/src/main.rs index f36121bd..8741ea36 100644 --- a/rust/operator-binary/src/main.rs +++ b/rust/operator-binary/src/main.rs @@ -4,7 +4,7 @@ use clap::{crate_description, crate_version, Parser}; use futures::StreamExt; use product_config::ProductConfigManager; use serde_json::json; -use stackable_hdfs_crd::{constants, constants::*, HdfsCluster}; +use stackable_hdfs_crd::{constants::*, HdfsCluster}; use stackable_operator::k8s_openapi::api::rbac::v1::{ClusterRoleBinding, Subject}; use stackable_operator::kube::api::{PartialObjectMeta, Patch, PatchParams}; use stackable_operator::kube::runtime::reflector;