From f9abf48f611e81782abc1c2fb81dd631e1143de6 Mon Sep 17 00:00:00 2001 From: Nedim Uka Date: Fri, 12 Jul 2019 10:53:23 +0200 Subject: [PATCH] Removed unecessary comments --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index f46f55e..6718d83 100644 --- a/index.js +++ b/index.js @@ -162,8 +162,8 @@ var rule = new schedule.RecurrenceRule(); rule.seccond = 1; schedule.scheduleJob(rule, async function () { console.log(new Date(), 'Crawler service started'); - // await crawlAll(); + await crawlAll(); console.log(new Date(), 'Crawler service finished, starting Notification service'); - // await processNotifications(); + await processNotifications(); console.log(new Date(), 'Notification service finished'); });