Skip to content

Commit

Permalink
Merge branch 'dev' into dist
Browse files Browse the repository at this point in the history
  • Loading branch information
massimocandela committed Feb 12, 2024
2 parents 726d84e + 19e0210 commit 07525ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/monitors/monitorROAS.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ export default class MonitorROAS extends Monitor {
this.enableExpirationAlerts = params.enableExpirationAlerts ?? true;
this.enableExpirationCheckTA = params.enableExpirationCheckTA ?? true;
this.enableDeletedCheckTA = params.enableDeletedCheckTA ?? true;
this.diffEverySeconds = Math.max(params.diffEverySeconds || 600, 300);
this.checkExpirationVrpsEverySeconds = Math.max(this.diffEverySeconds, 600);
this.checkTaEverySeconds = Math.max(params.checkTaEverySeconds || 0, this.diffEverySeconds, 15 * 60);
this.diffEverySeconds = Math.max(params.diffEverySeconds || 600, 200);
this.checkExpirationVrpsEverySeconds = Math.max(this.diffEverySeconds, 300);
this.checkTaEverySeconds = Math.max(params.checkTaEverySeconds || 15 * 60, this.diffEverySeconds);
this.enableAdvancedRpkiStats = params.enableAdvancedRpkiStats ?? true;


Expand Down

0 comments on commit 07525ff

Please sign in to comment.