Skip to content

Commit d313488

Browse files
committed
rename store
1 parent 0340b42 commit d313488

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
@@ -134,7 +134,7 @@ async fn main() -> anyhow::Result<()> {
134134
watch_namespace.get_api::<DeserializeGuard<v1alpha1::HiveCluster>>(&client),
135135
watcher::Config::default(),
136136
);
137-
let hive_store_1 = hive_controller.store();
137+
let config_map_store = hive_controller.store();
138138
hive_controller
139139
.owns(
140140
watch_namespace.get_api::<Service>(&client),
@@ -153,7 +153,7 @@ async fn main() -> anyhow::Result<()> {
153153
watch_namespace.get_api::<DeserializeGuard<ConfigMap>>(&client),
154154
watcher::Config::default(),
155155
move |config_map| {
156-
hive_store_1
156+
config_map_store
157157
.state()
158158
.into_iter()
159159
.filter(move |hive| references_config_map(hive, &config_map))

0 commit comments

Comments
 (0)