From 647995271e33697b228cf626829b79b23d348856 Mon Sep 17 00:00:00 2001 From: Andre Medeiros Date: Thu, 30 Jun 2022 16:03:47 -0400 Subject: [PATCH] give us a bit more breahting room in case of an itunes receipt check outage --- internal/domain/device.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/domain/device.go b/internal/domain/device.go index a23023b..ee36dd0 100644 --- a/internal/domain/device.go +++ b/internal/domain/device.go @@ -8,7 +8,7 @@ import ( ) const ( - DeviceReceiptCheckPeriodDuration = 1 * time.Hour + DeviceReceiptCheckPeriodDuration = 4 * time.Hour DeviceActiveAfterReceitCheckDuration = 30 * 24 * time.Hour // ~1 month DeviceGracePeriodAfterReceiptExpiry = 30 * 24 * time.Hour // ~1 month )