remove testing

This commit is contained in:
Kfir Dayan 2023-07-13 13:21:27 +03:00
parent 739f3b9913
commit f6742a0c0b

View file

@ -71,6 +71,6 @@ export class RabbitMQ {
calculateDelayTimeForQueue(payload: ITodo) {
const delayTime = payload.due_date.getTime() - this.currentDate.getCurrentDate().getTime();
return 0;
return delayTime;
}
}