From 92bb447cacd0a40f963c2bfa5e61cb0f451959e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20S=C3=B3jko?= Date: Thu, 4 Jan 2024 13:18:08 +0100 Subject: [PATCH] fix(syncing-server): amount of minutes to process for metrics --- packages/syncing-server/bin/statistics.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/syncing-server/bin/statistics.ts b/packages/syncing-server/bin/statistics.ts index c3dd0a028..7b91b7774 100644 --- a/packages/syncing-server/bin/statistics.ts +++ b/packages/syncing-server/bin/statistics.ts @@ -19,7 +19,7 @@ const sendStatistics = async ( region: awsRegion, }) - const minutesToProcess = 60 + const minutesToProcess = 30 const metricsToProcess = [Metric.NAMES.ItemCreated, Metric.NAMES.ItemUpdated]