Skip to content

Commit 51b9e42

Browse files
committed
rename function
1 parent 2661685 commit 51b9e42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/operator-binary/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ async fn main() -> anyhow::Result<()> {
143143
superset_store_2
144144
.state()
145145
.into_iter()
146-
.filter(move |superset| references_configmap(superset, &config_map))
146+
.filter(move |superset| references_config_map(superset, &config_map))
147147
.map(|superset| ObjectRef::from_obj(&*superset))
148148
},
149149
)
@@ -280,7 +280,7 @@ fn references_authentication_class(
280280
.any(|c| c.common.authentication_class_name() == &authentication_class_name)
281281
}
282282

283-
fn references_configmap(
283+
fn references_config_map(
284284
superset: &DeserializeGuard<v1alpha1::SupersetCluster>,
285285
config_map: &DeserializeGuard<ConfigMap>,
286286
) -> bool {

0 commit comments

Comments
 (0)