Skip to content

Commit 19e0210

Browse files
reduce default check times
1 parent 7c0a79d commit 19e0210

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/monitors/monitorROAS.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ export default class MonitorROAS extends Monitor {
3232
this.enableExpirationAlerts = params.enableExpirationAlerts ?? true;
3333
this.enableExpirationCheckTA = params.enableExpirationCheckTA ?? true;
3434
this.enableDeletedCheckTA = params.enableDeletedCheckTA ?? true;
35-
this.diffEverySeconds = Math.max(params.diffEverySeconds || 600, 300);
36-
this.checkExpirationVrpsEverySeconds = Math.max(this.diffEverySeconds, 600);
37-
this.checkTaEverySeconds = Math.max(params.checkTaEverySeconds || 0, this.diffEverySeconds, 15 * 60);
35+
this.diffEverySeconds = Math.max(params.diffEverySeconds || 600, 200);
36+
this.checkExpirationVrpsEverySeconds = Math.max(this.diffEverySeconds, 300);
37+
this.checkTaEverySeconds = Math.max(params.checkTaEverySeconds || 15 * 60, this.diffEverySeconds);
3838
this.enableAdvancedRpkiStats = params.enableAdvancedRpkiStats ?? true;
3939

4040

0 commit comments

Comments
 (0)