diff --git a/src/main/java/com/uid2/operator/store/CloudSyncOptOutStore.java b/src/main/java/com/uid2/operator/store/CloudSyncOptOutStore.java index 49f7d0385..1bc882c73 100644 --- a/src/main/java/com/uid2/operator/store/CloudSyncOptOutStore.java +++ b/src/main/java/com/uid2/operator/store/CloudSyncOptOutStore.java @@ -545,8 +545,8 @@ else if (OptOutUtils.isPartitionFile(f)) if (tsOld != Instant.EPOCH && tsNew != Instant.EPOCH && !tsOld.isBefore(tsNew)) { final String errorMsg = "Last partition timestamp of indexed files " + tsOld.getEpochSecond() + " is after last partition of non-indexed files " + tsNew.getEpochSecond(); - LOGGER.error(errorMsg); - throw new IllegalStateException(errorMsg); + // Leaving this as a warning until issue is fixed permanently + LOGGER.warn(errorMsg); } // if there are new partitions in this update, let index delete some in-mem delta caches that is old if (tsNew != Instant.EPOCH) {