Revert "Remove unneeded error "last successful id is higher than latest id" (fixes #4363) (#4486)"

This reverts commit c895e57086.
This commit is contained in:
Felix Ableitner 2024-06-14 10:45:44 +02:00
parent 99160228ae
commit 78777fba20

View file

@ -167,6 +167,14 @@ impl InstanceWorker {
latest_id
};
if id >= latest_id {
if id > latest_id {
tracing::error!(
"{}: last successful id {} is higher than latest id {} in database (did the db get cleared?)",
self.instance.domain,
id.0,
latest_id.0
);
}
// no more work to be done, wait before rechecking
tokio::select! {
() = sleep(*WORK_FINISHED_RECHECK_DELAY) => {},