From a2228855abe5487d32462de573baa99f0dfc2d8e Mon Sep 17 00:00:00 2001 From: masaimu Date: Wed, 3 Jan 2024 16:41:24 +0800 Subject: [PATCH] fix: supercache 60s period (#773) --- .../io/holoinsight/server/common/service/SuperCacheService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/common/common-service/src/main/java/io/holoinsight/server/common/service/SuperCacheService.java b/server/common/common-service/src/main/java/io/holoinsight/server/common/service/SuperCacheService.java index ad4e41ff3..03120b49b 100644 --- a/server/common/common-service/src/main/java/io/holoinsight/server/common/service/SuperCacheService.java +++ b/server/common/common-service/src/main/java/io/holoinsight/server/common/service/SuperCacheService.java @@ -65,7 +65,7 @@ public void load() throws Exception { @Override public int periodInSeconds() { - return 10; + return 60; } @Override