From 1fc845da87bfe55fd311edd46fec082e7be77595 Mon Sep 17 00:00:00 2001 From: skynetcap <100323448+skynetcap@users.noreply.github.com> Date: Sat, 3 Feb 2024 21:37:36 -0800 Subject: [PATCH] Reduce time delay in ObCrankerApplication execution cycle The execution interval in ObCrankerApplication.java has been reduced from 60 to 30 seconds. This is intended to increase the efficiency and responsiveness of the application by running the associated tasks more frequently. --- .../java/markets/arcana/obcranker/ObCrankerApplication.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/markets/arcana/obcranker/ObCrankerApplication.java b/src/main/java/markets/arcana/obcranker/ObCrankerApplication.java index 0569fbb..bb765ec 100644 --- a/src/main/java/markets/arcana/obcranker/ObCrankerApplication.java +++ b/src/main/java/markets/arcana/obcranker/ObCrankerApplication.java @@ -100,6 +100,6 @@ public void crankEventHeapLoop() { log.error("Error caching/cranking markets: {}", ex.getMessage(), ex); } - }, 0, 60, TimeUnit.SECONDS); + }, 0, 30, TimeUnit.SECONDS); } } \ No newline at end of file