Skip to content

Commit 14a3849

Browse files
committed
Update epsilon_controller.rs
1 parent 33aa78f commit 14a3849

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/controller/epsilon_controller.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ impl EpsilonController {
5959
.run(Self::reconcile, Self::on_error, clone_context)
6060
.for_each(|res| async move {
6161
match res {
62-
Ok(_) => debug!("Sync successful"),
62+
Ok(_) => {},
6363
Err(e) => {
6464
if let ObjectNotFound(_) = e {
6565
} else {
@@ -247,6 +247,8 @@ impl EpsilonController {
247247
)
248248
.await?;
249249

250+
debug!("Patch status ({}) : {}", instancen_name, json!({ "status": new_status }));
251+
250252
let state = &new_status.state;
251253
let close = &new_status.close;
252254

@@ -264,6 +266,8 @@ impl EpsilonController {
264266
epsilon_instance_api
265267
.delete(&instance_name, &DeleteParams::default())
266268
.await?;
269+
270+
debug!("Close instance {}", instance_name)
267271
}
268272
}
269273
}

0 commit comments

Comments
 (0)