From 909a80abc59f45c7de11dc4a8ab42559b04b5fe9 Mon Sep 17 00:00:00 2001
From: Liu <57480598+liu-zhipeng@users.noreply.github.com>
Date: Mon, 13 Nov 2023 10:31:54 +0800
Subject: [PATCH] fix: increase timeout for propose cron

---
 ops/testnet/staging/core/main.tf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ops/testnet/staging/core/main.tf b/ops/testnet/staging/core/main.tf
index a648797aa6..3ad5d2e388 100755
--- a/ops/testnet/staging/core/main.tf
+++ b/ops/testnet/staging/core/main.tf
@@ -428,6 +428,7 @@ module "lighthouse_propose_cron" {
   container_env_vars  = merge(local.lighthouse_env_vars, { LIGHTHOUSE_SERVICE = "propose" })
   schedule_expression = "rate(30 minutes)"
   memory_size         = 1536
+  timeout             = 900
 }
 
 module "relayer" {