Skip to content

Commit 9319f9e

Browse files
committed
fix: Always scraping on boot
1 parent 5f22e31 commit 9319f9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/scraper/src/scraper.module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class ScraperModule implements OnApplicationBootstrap {
6060

6161
this.logger.log(`Enabled cron on '${this.configService.get(ConfigService.CRON_TIME)}'`)
6262

63-
if (this.configService.get(ConfigService.SCRAPE_ON_START) || true) {
63+
if (this.configService.get(ConfigService.SCRAPE_ON_START)) {
6464
this.scrapeConfigs()
6565
}
6666
}

0 commit comments

Comments
 (0)