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 a3ad9db commit 2a5ac80Copy full SHA for 2a5ac80
src/main/java/com/uid2/shared/vertx/RotatingStoreVerticle.java
@@ -102,6 +102,9 @@ private void startRefresh(Promise<Void> promise) {
102
promise.complete();
103
storeRefreshTimer.record(java.time.Duration.ofMillis(startupRefreshTimeMs));
104
LOGGER.info("Successful " + this.storeName + " loading. Starting Background Refresh");
105
+ if (this.refreshCallback != null) {
106
+ this.refreshCallback.run();
107
+ }
108
this.startBackgroundRefresh();
109
} else {
110
this.healthComponent.setHealthStatus(false, ar.cause().getMessage());
0 commit comments