File tree 1 file changed +2
-0
lines changed
operator-framework-core/src/main/java/io/javaoperatorsdk/operator
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ public <R extends CustomResource> UpdateControl<R> timeControllerCreateOrUpdate(
36
36
.register (registry );
37
37
try {
38
38
final var result = timer .record (() -> controller .createOrUpdateResource (resource , context ));
39
+ System .out .println ("I am here in create update" );
39
40
String successType = "cr" ;
40
41
if (result .isUpdateStatusSubResource ()) {
41
42
successType = "status" ;
@@ -75,6 +76,7 @@ public DeleteControl timeControllerDelete(
75
76
.register (registry );
76
77
try {
77
78
final var result = timer .record (() -> controller .deleteResource (resource , context ));
79
+ System .out .println ("I am here in delete" );
78
80
String successType = "notDelete" ;
79
81
if (result == DeleteControl .DEFAULT_DELETE ) {
80
82
successType = "delete" ;
You can’t perform that action at this time.
0 commit comments