Skip to content

Commit

Permalink
disable maintenance tasks for now
Browse files Browse the repository at this point in the history
  • Loading branch information
thatkookooguy committed Oct 24, 2024
1 parent 3fbfdb0 commit e1203e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/tasks/tasks.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ export class TasksService {
private readonly githubService: GithubService
) {}

@Timeout(5000)
// @Timeout(5000)
async handleTimeout() {
this.logger.debug(bgBlue.white.bold(' ~= Start syncing Github App installations =~ '));
const githubSyncLogger = new Logger('GithubSyncTask');
await this.syncGithubAppInstallations(githubSyncLogger);
}

@Cron(CronExpression.EVERY_12_HOURS)
// @Cron(CronExpression.EVERY_12_HOURS)
handleCron() {
this.logger.debug('Called when the current second is 45');
}
Expand Down

0 comments on commit e1203e6

Please sign in to comment.