From ec888dec8be18ee42f8379e9822c5a627aafea25 Mon Sep 17 00:00:00 2001 From: Nithin R Date: Tue, 2 Apr 2024 18:29:38 +0530 Subject: [PATCH] chore:inapp and es log runtime update --- installer/resources/notification/function.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/resources/notification/function.py b/installer/resources/notification/function.py index aee6acd4a5..fe16bbc92e 100644 --- a/installer/resources/notification/function.py +++ b/installer/resources/notification/function.py @@ -85,7 +85,7 @@ class InAppNotificationFunction(LambdaFunctionResource): function_name = INAPP_NOTIFICATION_FILE_NAME role = LambdaRole.get_output_attr('arn') handler = INAPP_NOTIFICATION_FILE_NAME + ".lambda_handler" - runtime = "python3.7" + runtime = "python3.12" memory_size = 512 timeout = 180 s3_bucket = BucketStorage.get_output_attr('bucket') @@ -103,7 +103,7 @@ class LogEsNotificationFunction(LambdaFunctionResource): function_name = NOTIFICATION_LOG_TO_ES role = LambdaRole.get_output_attr('arn') handler = "com.paladincloud.notification_log.LogNotificationToOpenSearch::handleRequest" - runtime = "java8" + runtime = "java21" memory_size = 512 timeout = 180 s3_bucket = BucketStorage.get_output_attr('bucket')