Skip to content

Commit 422224d

Browse files
committed
rebase
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 538b109 commit 422224d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/optionaldependent/OptionalDependentReconciler.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
import io.javaoperatorsdk.operator.api.reconciler.*;
44
import io.javaoperatorsdk.operator.api.reconciler.dependent.Dependent;
55

6+
@Workflow(dependents = {
7+
@Dependent(type = OptionalDependent.class, optional = true),
8+
})
69
@ControllerConfiguration(
710
generationAwareEventProcessing = false, // to easily trigger reconciliation with metadata update
8-
namespaces = Constants.WATCH_CURRENT_NAMESPACE,
9-
dependents = {
10-
@Dependent(type = OptionalDependent.class, optional = true),
11-
})
11+
namespaces = Constants.WATCH_CURRENT_NAMESPACE)
1212
public class OptionalDependentReconciler
1313
implements Reconciler<OptionalDependentCustomResource> {
1414

0 commit comments

Comments
 (0)