Skip to content

Commit 9482c3e

Browse files
authored
fix: catch exceptions from updating the status (#2752)
closes: #2751 Signed-off-by: Steve Hawkins <[email protected]>
1 parent 29cd363 commit 9482c3e

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/ReconciliationDispatcher.java

+12-3
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,18 @@ public boolean isLastAttempt() {
212212

213213
P updatedResource = null;
214214
if (errorStatusUpdateControl.getResource().isPresent()) {
215-
updatedResource =
216-
customResourceFacade.patchStatus(
217-
errorStatusUpdateControl.getResource().orElseThrow(), originalResource);
215+
try {
216+
updatedResource =
217+
customResourceFacade.patchStatus(
218+
errorStatusUpdateControl.getResource().orElseThrow(), originalResource);
219+
} catch (Exception ex) {
220+
log.error(
221+
"updateErrorStatus failed for resource: {} with version: {} for error {}",
222+
getUID(resource),
223+
getVersion(resource),
224+
e.getMessage(),
225+
ex);
226+
}
218227
}
219228
if (errorStatusUpdateControl.isNoRetry()) {
220229
PostExecutionControl<P> postExecutionControl;

0 commit comments

Comments
 (0)