Skip to content

Commit 75cb5b4

Browse files
committed
bug fix
1 parent 3b31dc5 commit 75cb5b4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/uid2/shared/optout/OptOutCloudSync.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@ public boolean refresh(Instant now, ICloudStorage fsCloud, ICloudStorage fsLocal
198198
if (deltasToMerge.size() == 0) {
199199
LOGGER.warn("Skip partition produce due to no delta files found between now and last partition");
200200
} else {
201-
LOGGER.debug("sending " + this.eventMergeDelta);
202-
vertx.eventBus().send(this.eventMergeDelta, Utils.toJson(deltasToMerge));
201+
LOGGER.info("publishing partition.produce event with {} delta files", deltasToMerge.size());
202+
vertx.eventBus().publish(this.eventMergeDelta, Utils.toJson(deltasToMerge));
203203
}
204204
}
205205
} else if (this.handlerIndexUpdate != null) {

0 commit comments

Comments
 (0)