We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76837e0 commit 7fdc45dCopy full SHA for 7fdc45d
src/main/java/com/uid2/operator/vertx/OperatorShutdownHandler.java
@@ -92,8 +92,9 @@ public void checkStoreRefreshStaleness() {
92
Instant lastSuccess = entry.getValue().get();
93
94
if (lastSuccess == null) {
95
- // Store hasn't had a successful refresh yet - might be during startup
96
- // Don't trigger shutdown for stores that haven't initialized
+ // Store hasn't had a successful refresh yet
+ // This should rarely happen since startup success also records timestamp, but keep as defensive guard for edge cases
97
+ LOGGER.warn("Store '{}' has no recorded successful refresh - skipping staleness check", storeName);
98
continue;
99
}
100
0 commit comments