Skip to content

Commit

Permalink
bring back validation cycle period to 100 ms
Browse files Browse the repository at this point in the history
  • Loading branch information
massimocandela committed Jul 20, 2020
1 parent 9bf2227 commit e890275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/monitors/monitorRPKI.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export default class MonitorRPKI extends Monitor {
this.rpki
.preCache()
.then(() => {
this.validationTimer = setInterval(this.validateBatch, 50); // If already cached, we can validate more often
this.validationTimer = setInterval(this.validateBatch, 100); // If already cached, we can validate more often
})
.catch(() => {
this.logger.log({
Expand Down

0 comments on commit e890275

Please sign in to comment.