Skip to content

Commit

Permalink
Change timeout for gateway serverless functions to 30s
Browse files Browse the repository at this point in the history
  • Loading branch information
amarthadan committed Sep 13, 2022
1 parent fcef8e1 commit c82a68b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/airnode-deployer/terraform/aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module "httpReq" {
handler = "index.httpReq"
source_dir = var.handler_dir
memory_size = 128
timeout = 15
timeout = 30
configuration_file = var.configuration_file
secrets_file = var.secrets_file
reserved_concurrent_executions = var.disable_concurrency_reservation ? null : var.http_max_concurrency
Expand Down Expand Up @@ -82,7 +82,7 @@ module "httpSignedReq" {
handler = "index.httpSignedReq"
source_dir = var.handler_dir
memory_size = 128
timeout = 15
timeout = 30
configuration_file = var.configuration_file
secrets_file = var.secrets_file
reserved_concurrent_executions = var.disable_concurrency_reservation ? null : var.http_signed_data_max_concurrency
Expand Down
4 changes: 2 additions & 2 deletions packages/airnode-deployer/terraform/gcp/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ module "httpReq" {
entry_point = "httpReq"
source_dir = var.handler_dir
memory_size = 128
timeout = 15
timeout = 30
configuration_file = var.configuration_file
secrets_file = var.secrets_file
region = var.gcp_region
Expand Down Expand Up @@ -159,7 +159,7 @@ module "httpSignedReq" {
entry_point = "httpSignedReq"
source_dir = var.handler_dir
memory_size = 128
timeout = 15
timeout = 30
configuration_file = var.configuration_file
secrets_file = var.secrets_file
region = var.gcp_region
Expand Down

0 comments on commit c82a68b

Please sign in to comment.