We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0340b42 commit d313488Copy full SHA for d313488
rust/operator-binary/src/main.rs
@@ -134,7 +134,7 @@ async fn main() -> anyhow::Result<()> {
134
watch_namespace.get_api::<DeserializeGuard<v1alpha1::HiveCluster>>(&client),
135
watcher::Config::default(),
136
);
137
- let hive_store_1 = hive_controller.store();
+ let config_map_store = hive_controller.store();
138
hive_controller
139
.owns(
140
watch_namespace.get_api::<Service>(&client),
@@ -153,7 +153,7 @@ async fn main() -> anyhow::Result<()> {
153
watch_namespace.get_api::<DeserializeGuard<ConfigMap>>(&client),
154
155
move |config_map| {
156
- hive_store_1
+ config_map_store
157
.state()
158
.into_iter()
159
.filter(move |hive| references_config_map(hive, &config_map))
0 commit comments