Skip to content

Commit

Permalink
Reduce time delay in ObCrankerApplication execution cycle
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
skynetcap committed Feb 4, 2024
1 parent b969ce4 commit 1fc845d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,6 @@ public void crankEventHeapLoop() {
log.error("Error caching/cranking markets: {}", ex.getMessage(), ex);
}

}, 0, 60, TimeUnit.SECONDS);
}, 0, 30, TimeUnit.SECONDS);
}
}

0 comments on commit 1fc845d

Please sign in to comment.