[ISSUE #7914] Fix the issue that pop revive msg to retry topic may lose messages (#7915)

* typo int readme[ecosystem]

* fix pop problem
This commit is contained in:
fujian-zfj
2024-03-18 14:08:35 +08:00
committed by GitHub
parent e1339ac8a0
commit 9b4f16a5b4
@@ -541,11 +541,6 @@ public class PopReviveService extends ServiceThread {
}
}
//skip ck from last epoch
if (popCheckPoint.getPopTime() < message.getStoreTimestamp()) {
POP_LOGGER.warn("reviveQueueId={}, skip ck from last epoch {}", queueId, popCheckPoint);
return new Pair<>(msgOffset, true);
}
boolean result = reviveRetry(popCheckPoint, message);
return new Pair<>(msgOffset, result);
});