mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-03 12:25:31 +00:00
adaptiveSetInterval fires the first request immediately if runNow is true, in 3 seconds otherwise.
This commit is contained in:
parent
cfb294862f
commit
5c8b5b7b63
1 changed files with 2 additions and 4 deletions
|
@ -40,8 +40,6 @@ function adaptiveSetInterval(fn, runNow) {
|
|||
}
|
||||
});
|
||||
|
||||
if (runNow) {
|
||||
quota = 20;
|
||||
scheduleRun();
|
||||
}
|
||||
quota = 20;
|
||||
scheduledId = setTimeout(scheduleRun, runNow ? 1 : 3000);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue