Skip to content

Commit 035b195

Browse files
committed
rename store
1 parent 1e88f35 commit 035b195

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
@@ -162,7 +162,7 @@ pub async fn create_controller(
162162
namespace.get_api::<DeserializeGuard<v1alpha1::KafkaCluster>>(&client),
163163
watcher::Config::default(),
164164
);
165-
let kafka_store_1 = kafka_controller.store();
165+
let config_map_store = kafka_controller.store();
166166
kafka_controller
167167
.owns(
168168
namespace.get_api::<StatefulSet>(&client),
@@ -193,7 +193,7 @@ pub async fn create_controller(
193193
namespace.get_api::<DeserializeGuard<ConfigMap>>(&client),
194194
watcher::Config::default(),
195195
move |config_map| {
196-
kafka_store_1
196+
config_map_store
197197
.state()
198198
.into_iter()
199199
.filter(move |kafka| references_config_map(kafka, &config_map))

0 commit comments

Comments
 (0)