Skip to content

Commit 9739a71

Browse files
committed
fix: javadoc
Signed-off-by: Chris Laprun <[email protected]>
1 parent 51dd0f5 commit 9739a71

File tree

1 file changed

+7
-6
lines changed
  • operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler

1 file changed

+7
-6
lines changed

Diff for: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/Workflow.java

+7-6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
import io.fabric8.kubernetes.api.model.HasMetadata;
1010
import io.javaoperatorsdk.operator.api.reconciler.dependent.Dependent;
11+
import io.javaoperatorsdk.operator.processing.dependent.workflow.WorkflowCleanupResult;
12+
import io.javaoperatorsdk.operator.processing.dependent.workflow.WorkflowReconcileResult;
1113

1214
@Inherited
1315
@Retention(RetentionPolicy.RUNTIME)
@@ -29,12 +31,11 @@
2931
* execution as would normally be the case. Instead, it will proceed to its
3032
* {@link Reconciler#reconcile(HasMetadata, Context)} method as if no error occurred. It is then
3133
* up to the developer to decide how to proceed by retrieving the errored dependents (and their
32-
* associated exception) via
33-
* {@link io.javaoperatorsdk.operator.processing.dependent.workflow.WorkflowResult#erroredDependents},
34-
* the workflow result itself being accessed from
35-
* {@link Context#managedWorkflowAndDependentResourceContext()}. If {@code false}, an exception
36-
* will be automatically thrown at the end of the workflow execution, presenting an aggregated
37-
* view of what happened.
34+
* associated exception) via {@link WorkflowReconcileResult#getErroredDependents()} or
35+
* {@link WorkflowCleanupResult#getErroredDependents()}, the workflow result itself being accessed
36+
* from {@link Context#managedWorkflowAndDependentResourceContext()}. If {@code false}, an
37+
* exception will be automatically thrown at the end of the workflow execution, presenting an
38+
* aggregated view of what happened.
3839
*/
3940
boolean handleExceptionsInReconciler() default false;
4041

0 commit comments

Comments
 (0)