Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
修改 最短限制间隔
Browse files Browse the repository at this point in the history
  • Loading branch information
TKaxv-7S committed Jul 17, 2024
1 parent 8c8ce4f commit 3599569
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public void run() {
Log.record("开始执行");
try {
int checkInterval = BaseModel.getCheckInterval().getValue();
if (lastExecTime + 5000 > System.currentTimeMillis()) {
if (lastExecTime + 2000 > System.currentTimeMillis()) {
Log.record("执行间隔较短,跳过执行");
execDelayedHandler(checkInterval);
return;
Expand Down

0 comments on commit 3599569

Please sign in to comment.