We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e18fde3 + 11ceca9 commit 918778cCopy full SHA for 918778c
operator-framework/src/main/java/com/github/containersolutions/operator/ControllerUtils.java
@@ -25,6 +25,12 @@ public class ControllerUtils {
25
doneableClassCache = new HashMap<>();
26
27
static String getDefaultFinalizer(ResourceController controller) {
28
+ if(getAnnotation(controller).finalizerName().equals(DEFAULT_FINALIZER))
29
+ {
30
+ //[package+"."+classNameOfController]
31
+ return getAnnotation(controller).customResourceClass.getPackage().getName() + "." + getAnnotation(controller).customResourceClass.getSimpleName();
32
+ }
33
+
34
return getAnnotation(controller).finalizerName();
35
}
36
0 commit comments