mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
Use interval
This commit is contained in:
parent
3ebcd02409
commit
a25e3d1011
@ -1,5 +1,5 @@
|
||||
import { Injectable } from '@nestjs/common';
|
||||
import { Cron, CronExpression, SchedulerRegistry } from '@nestjs/schedule';
|
||||
import { Interval, SchedulerRegistry } from '@nestjs/schedule';
|
||||
import { EnvironmentService } from '../environment/environment.service';
|
||||
import { InjectKysely } from 'nestjs-kysely';
|
||||
import { KyselyDB } from '@docmost/db/types/kysely.types';
|
||||
@ -19,9 +19,7 @@ export class TelemetryService {
|
||||
private schedulerRegistry: SchedulerRegistry,
|
||||
) {}
|
||||
|
||||
@Cron(CronExpression.EVERY_DAY_AT_MIDNIGHT, {
|
||||
name: 'telemetry',
|
||||
})
|
||||
@Interval('telemetry', 24 * 60 * 60 * 1000)
|
||||
async sendTelemetry() {
|
||||
try {
|
||||
if (
|
||||
@ -29,7 +27,7 @@ export class TelemetryService {
|
||||
this.environmentService.isCloud() ||
|
||||
this.environmentService.getNodeEnv() !== 'production'
|
||||
) {
|
||||
this.schedulerRegistry.deleteCronJob('telemetry');
|
||||
this.schedulerRegistry.deleteInterval('telemetry');
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user