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.
2 parents ce1ab8b + d745cc7 commit 81646aaCopy full SHA for 81646aa
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