Reduce grace period to report decryption failure

This commit is contained in:
Valere 2022-01-05 16:52:05 +01:00
parent 446b321a4d
commit a1429dbb8d

View file

@ -19,11 +19,11 @@
// Call `checkFailures` every `CHECK_INTERVAL`
#define CHECK_INTERVAL 5
#define CHECK_INTERVAL 2
// Give events a chance to be decrypted by waiting `GRACE_PERIOD` before counting
// and reporting them as failures
#define GRACE_PERIOD 60
#define GRACE_PERIOD 4
// E2E failures analytics category.
NSString *const kDecryptionFailureTrackerAnalyticsCategory = @"e2e.failure";