We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32a8151 commit 4887c0aCopy full SHA for 4887c0a
services/job-queues/contestPredictionQueue.js
@@ -67,7 +67,7 @@ const checkPredictRatingJobs = async () => {
67
for (job of jobs) {
68
date = Math.min(date, new Date(job.opts.timestamp + job.opts.delay));
69
}
70
- return date - Date.now() <= 1 * 24 * 60 * 60 * 100;
+ return date - Date.now() <= 1 * 60 * 60 * 1000;
71
};
72
73
predictQueue.on("completed", (job, result) => {
0 commit comments