From 6115d2c76cafcbfaefff1df90bfceae86a54317a Mon Sep 17 00:00:00 2001 From: Chip Wasson Date: Tue, 3 Dec 2024 08:09:42 -0700 Subject: [PATCH] Remove chess stat hoarding --- src/hoarding/hoarding.service.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/hoarding/hoarding.service.ts b/src/hoarding/hoarding.service.ts index 85798c4..3dc391c 100644 --- a/src/hoarding/hoarding.service.ts +++ b/src/hoarding/hoarding.service.ts @@ -8,14 +8,14 @@ import { MinioService } from 'src/minio/minio.service'; export class HoardingService { private readonly logger: Logger = new Logger(HoardingService.name); constructor(public readonly minioService: MinioService) { - this.hoardChessStats(); + // this.hoardChessStats(); } - @Cron('0 0 1 * * *') - async hoardChessStats() { - await this.hoardUserChessStats('letmutchessplayer'); - await this.hoardUserChessStats('archyotype'); - } + // @Cron('0 0 1 * * *') + // async hoardChessStats() { + // await this.hoardUserChessStats('letmutchessplayer'); + // await this.hoardUserChessStats('archyotype'); + // } async hoardUserChessStats(user: string) { this.logger.log(`Hoarding chess.com stats for ${user}`);