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

Commit

Permalink
Increase decryption failure grace period (#12298)
Browse files Browse the repository at this point in the history
  • Loading branch information
BillCarsonFr committed Feb 29, 2024
1 parent 71cece7 commit dc5803f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DecryptionFailureTracker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ export class DecryptionFailureTracker {
public static TRACK_INTERVAL_MS = 60000;

// Call `checkFailures` every `CHECK_INTERVAL_MS`.
public static CHECK_INTERVAL_MS = 5000;
public static CHECK_INTERVAL_MS = 40000;

// Give events a chance to be decrypted by waiting `GRACE_PERIOD_MS` before counting
// the failure in `failureCounts`.
public static GRACE_PERIOD_MS = 4000;
public static GRACE_PERIOD_MS = 30000;

/**
* Create a new DecryptionFailureTracker.
Expand Down

0 comments on commit dc5803f

Please sign in to comment.