We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce1ab8b commit d745cc7Copy full SHA for d745cc7
src/main/java/com/uid2/operator/store/CloudSyncOptOutStore.java
@@ -545,8 +545,8 @@ else if (OptOutUtils.isPartitionFile(f))
545
if (tsOld != Instant.EPOCH && tsNew != Instant.EPOCH && !tsOld.isBefore(tsNew)) {
546
final String errorMsg = "Last partition timestamp of indexed files " + tsOld.getEpochSecond()
547
+ " is after last partition of non-indexed files " + tsNew.getEpochSecond();
548
- LOGGER.error(errorMsg);
549
- throw new IllegalStateException(errorMsg);
+ // Leaving this as a warning until issue is fixed permanently
+ LOGGER.warn(errorMsg);
550
}
551
// if there are new partitions in this update, let index delete some in-mem delta caches that is old
552
if (tsNew != Instant.EPOCH) {
0 commit comments