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

remove-federate-higher-id-error
Felix Ableitner 2 months ago
parent 328a48c9f5
commit bc60fea3b3

@ -158,14 +158,6 @@ 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) => {},

Loading…
Cancel
Save