File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ impl EpsilonController {
59
59
. run ( Self :: reconcile, Self :: on_error, clone_context)
60
60
. for_each ( |res| async move {
61
61
match res {
62
- Ok ( _) => debug ! ( "Sync successful" ) ,
62
+ Ok ( _) => { } ,
63
63
Err ( e) => {
64
64
if let ObjectNotFound ( _) = e {
65
65
} else {
@@ -247,6 +247,8 @@ impl EpsilonController {
247
247
)
248
248
. await ?;
249
249
250
+ debug ! ( "Patch status ({}) : {}" , instancen_name, json!( { "status" : new_status } ) ) ;
251
+
250
252
let state = & new_status. state ;
251
253
let close = & new_status. close ;
252
254
@@ -264,6 +266,8 @@ impl EpsilonController {
264
266
epsilon_instance_api
265
267
. delete ( & instance_name, & DeleteParams :: default ( ) )
266
268
. await ?;
269
+
270
+ debug ! ( "Close instance {}" , instance_name)
267
271
}
268
272
}
269
273
}
You can’t perform that action at this time.
0 commit comments