Skip to content

Commit e280d40

Browse files
committed
correcting formatting
1 parent dca0e84 commit e280d40

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,7 @@ private void handleRetryOnException(ExecutionScope executionScope) {
173173
.scheduleOnce(executionScope.getCustomResource(), delay);
174174
},
175175
() -> {
176-
log.error(
177-
"Exhausted retries for {}", executionScope);
176+
log.error("Exhausted retries for {}", executionScope);
178177
});
179178
}
180179

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,11 @@ public PostExecutionControl handleExecution(ExecutionScope<R> executionScope) {
5555
try {
5656
return handleDispatch(executionScope);
5757
} catch (KubernetesClientException e) {
58-
log.info("Kubernetes exception {} {} during event processing, {} failed", e.getCode(), e.getMessage(), executionScope);
58+
log.info(
59+
"Kubernetes exception {} {} during event processing, {} failed",
60+
e.getCode(),
61+
e.getMessage(),
62+
executionScope);
5963
return PostExecutionControl.exceptionDuringExecution(e);
6064
} catch (RuntimeException e) {
6165
log.error("Error during event processing {} failed.", executionScope, e);

0 commit comments

Comments
 (0)