From 6d6f156efeeffb15f5382fc01d7cd73e9d2618da Mon Sep 17 00:00:00 2001 From: Jinbo Pan Date: Thu, 15 Aug 2024 18:36:25 -0700 Subject: [PATCH] Increase AWS Lambda Timeout 10 seconds are not enough to upload images in comments, so increase the timeout to 60 seconds. --- src/server/aws-lambda/terraform/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/aws-lambda/terraform/main.tf b/src/server/aws-lambda/terraform/main.tf index 86db123c4..d5771f68a 100644 --- a/src/server/aws-lambda/terraform/main.tf +++ b/src/server/aws-lambda/terraform/main.tf @@ -18,7 +18,7 @@ module "lambda_function" { function_name = "twikoo" handler = "index.handler" runtime = "nodejs20.x" - timeout = 10 + timeout = 60 source_path = "../src"