From 9fbbf0095e8f4f7da391206fae38cfcf6d05b515 Mon Sep 17 00:00:00 2001 From: Abhinav Date: Tue, 12 Apr 2022 15:43:21 +0530 Subject: [PATCH] decrease ml sync gap interval to 5 sec --- src/constants/machineLearning/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants/machineLearning/config.ts b/src/constants/machineLearning/config.ts index 0afd35215..dc29abf1c 100644 --- a/src/constants/machineLearning/config.ts +++ b/src/constants/machineLearning/config.ts @@ -2,7 +2,7 @@ import { JobConfig } from 'types/common/job'; import { MLSearchConfig, MLSyncConfig } from 'types/machineLearning'; export const DEFAULT_ML_SYNC_JOB_CONFIG: JobConfig = { - intervalSec: 30, + intervalSec: 5, // TODO: finalize this after seeing effects on and from machine sleep maxItervalSec: 960, backoffMultiplier: 2,