5615 create messageongoingstalecron (#6005)

Closes #5615
This commit is contained in:
bosiraphael
2024-06-25 11:57:02 +02:00
committed by GitHub
parent f8c057deea
commit 4dfca45fd3
7 changed files with 225 additions and 1 deletions

View File

@ -0,0 +1,13 @@
import { MESSAGING_IMPORT_ONGOING_SYNC_TIMEOUT } from 'src/modules/messaging/message-import-manager/constants/messaging-import-ongoing-sync-timeout.constant';
export const isSyncStale = (syncStageStartedAt: string): boolean => {
const syncStageStartedTime = new Date(syncStageStartedAt).getTime();
if (isNaN(syncStageStartedTime)) {
throw new Error('Invalid date format');
}
return (
Date.now() - syncStageStartedTime > MESSAGING_IMPORT_ONGOING_SYNC_TIMEOUT
);
};