Browse Source

update expired time to one day

Signed-off-by: nameczz <zizhao.chen@zilliz.com>
nameczz 3 years ago
parent
commit
79fc6a7a2f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      express/src/utils/Const.ts

+ 1 - 1
express/src/utils/Const.ts

@@ -5,7 +5,7 @@ export const MILVUS_ADDRESS = 'milvus_address';
 
 
 // for lru cache
 // for lru cache
 export const INSIGHT_CACHE = 'insight_cache';
 export const INSIGHT_CACHE = 'insight_cache';
-export const EXPIRED_TIME = 1000 * 10;
+export const EXPIRED_TIME = 1000 * 60 * 60 * 24;
 
 
 export enum LOADING_STATE {
 export enum LOADING_STATE {
   LOADED,
   LOADED,