From 3755f5b9872b60f09761672723899fc2d8e433b3 Mon Sep 17 00:00:00 2001 From: "Grayson, Matthew" Date: Mon, 25 Sep 2023 09:11:15 -0500 Subject: [PATCH] Change schedule of cloudwatchToS3 to run every 4 hours. --- backend/src/tasks/functions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/tasks/functions.yml b/backend/src/tasks/functions.yml index 3b592a9a2..64c55d4a1 100644 --- a/backend/src/tasks/functions.yml +++ b/backend/src/tasks/functions.yml @@ -2,7 +2,7 @@ cloudwatchToS3: handler: src/tasks/cloudwatchToS3.handler timeout: 900 events: - - schedule: rate(5 minutes) + - schedule: rate(4 hours) reservedConcurrency: 1 memorySize: 4096