Skip to content

Commit fc4be6c

Browse files
committed
wip
Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
1 parent ce691e4 commit fc4be6c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

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

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,12 +331,13 @@ private void logErrorIfNoRetryConfigured(
331331
if (!isRetryConfigured() && postExecutionControl.exceptionDuringExecution()) {
332332
if (postExecutionControl.isErrorHandledByReconciler()) {
333333
log.debug(
334-
"Error during event processing {}, but was handled by the reconciler",
334+
"Error during event processing {}, but was handled by the reconciler. (No retry"
335+
+ " configured)",
335336
executionScope,
336337
postExecutionControl.getRuntimeException().orElseThrow());
337338
} else {
338339
log.error(
339-
"Error during event processing {}",
340+
"Error during event processing {}. (No retry configured)",
340341
executionScope,
341342
postExecutionControl.getRuntimeException().orElseThrow());
342343
}

0 commit comments

Comments
 (0)