Skip to content

Commit 5e08d1d

Browse files
committed
chore: Rename store variable
1 parent 5411664 commit 5e08d1d

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
@@ -140,7 +140,7 @@ async fn main() -> anyhow::Result<()> {
140140
watch_namespace.get_api::<DeserializeGuard<v1alpha1::HbaseCluster>>(&client),
141141
watcher::Config::default(),
142142
);
143-
let hbase_store_1 = hbase_controller.store();
143+
let config_map_store = hbase_controller.store();
144144
hbase_controller
145145
.owns(
146146
watch_namespace.get_api::<Service>(&client),
@@ -155,7 +155,7 @@ async fn main() -> anyhow::Result<()> {
155155
watch_namespace.get_api::<DeserializeGuard<ConfigMap>>(&client),
156156
watcher::Config::default(),
157157
move |config_map| {
158-
hbase_store_1
158+
config_map_store
159159
.state()
160160
.into_iter()
161161
.filter(move |hbase| references_config_map(hbase, &config_map))

0 commit comments

Comments
 (0)