File tree 1 file changed +3
-3
lines changed
operator-framework-core/src/main/java/io/javaoperatorsdk/operator
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11
11
import io .javaoperatorsdk .operator .processing .Controller ;
12
12
13
13
/**
14
- * Not confuse with controller manager form go operators. The highest level aggregate is
15
- * {@link Operator} in JOSDK .
14
+ * Not to be confused with the controller manager concept from Go's controller-runtime project. In
15
+ * JOSDK, the equivalent concept is {@link Operator}.
16
16
*/
17
17
class ControllerManager {
18
18
@@ -48,7 +48,7 @@ public synchronized void startEventProcessing() {
48
48
controllers ().parallelStream ().forEach (Controller ::startEventProcessing );
49
49
}
50
50
51
- @ SuppressWarnings ("unchecked" )
51
+ @ SuppressWarnings ({ "unchecked" , "rawtypes" } )
52
52
synchronized void add (Controller controller ) {
53
53
final var configuration = controller .getConfiguration ();
54
54
final var resourceTypeName = ReconcilerUtils
You can’t perform that action at this time.
0 commit comments