fix: no listens are being crawled (#306)

The supervisor job handler was accidentally disabled in a previous
commit.
This commit is contained in:
Julian Tölle 2023-10-08 15:56:09 +02:00 committed by GitHub
parent db240bfa45
commit 9af3115cab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ export class SchedulerService implements OnApplicationBootstrap {
} }
@Span() @Span()
// @CrawlerSupervisorJob.Handle() @CrawlerSupervisorJob.Handle()
async superviseImportJobs(): Promise<void> { async superviseImportJobs(): Promise<void> {
this.logger.log("Starting crawler jobs"); this.logger.log("Starting crawler jobs");
const userInfo = await this.spotifyService.getCrawlableUserInfo(); const userInfo = await this.spotifyService.getCrawlableUserInfo();