Set cron frequency to 2 minutes

This commit is contained in:
Jesús Ángel 2019-03-01 17:02:51 +01:00
parent d4e43a5f57
commit f2bb0d909c

View File

@ -21,7 +21,7 @@ export class IndexPatternCronJob {
constructor(server) {
this.server = server;
this.wzWrapper = new ElasticWrapper(server);
this.CRON_FREQ = '0 * * * * *'; // Every minute
this.CRON_FREQ = '0 */2 * * * *'; // Every minute
}
/**