Skip to content

Commit b15a63c

Browse files
committed
fix: error handling compilation issue
1 parent c8deb6a commit b15a63c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

operator-framework-core/src/test/java/io/javaoperatorsdk/operator/processing/event/ReconciliationDispatcherTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,8 +526,8 @@ public DeleteControl cleanup(TestCustomResource resource, Context context) {
526526

527527
@Override
528528
public Optional<TestCustomResource> updateErrorStatus(TestCustomResource resource,
529-
RetryInfo retryInfo, RuntimeException e) {
530-
return errorHandler != null ? errorHandler.updateErrorStatus(resource, retryInfo, e)
529+
Context<TestCustomResource> context, Exception e) {
530+
return errorHandler != null ? errorHandler.updateErrorStatus(resource, context, e)
531531
: Optional.empty();
532532
}
533533
}

0 commit comments

Comments
 (0)