Skip to content

Commit 9b6b0c2

Browse files
committed
fix: correct typo in log message in InformerWrapper
Signed-off-by: David Sondermann <[email protected]>
1 parent 90ee3fc commit 9b6b0c2

File tree

1 file changed

+2
-2
lines changed
  • operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/informer

1 file changed

+2
-2
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/informer/InformerWrapper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ public boolean isRunning() {
204204
public Status getStatus() {
205205
var status = isRunning() && hasSynced() && isWatching() ? Status.HEALTHY : Status.UNHEALTHY;
206206
log.debug(
207-
"Informer status: {} for for type: {}, namespace: {}, details[ is running: {}, has synced:"
208-
+ " {}, is watching: {} ]",
207+
"Informer status: {} for type: {}, namespace: {}, details [is running: {}, has synced: {},"
208+
+ " is watching: {}]",
209209
status,
210210
informer.getApiTypeClass().getSimpleName(),
211211
namespaceIdentifier,

0 commit comments

Comments
 (0)