From 40189072ef15e5072eca82d999f5eaee9e67d9c8 Mon Sep 17 00:00:00 2001 From: slZhong <1542123803@qq.com> Date: Thu, 13 Aug 2026 17:53:27 +0800 Subject: [PATCH] Revert "Merge pull request #707 from SolveaCX/codex/router-backend-timeout" This reverts commit 11de547bfccfaede7943763a77f6c018da680910, reversing changes made to ea9a19193b48ab3b3c87f18059a273e92bcad8e2. --- deploy/gcp/modules/cloud-lb/main.tf | 1 - deploy/gcp/modules/cloud-lb/variables.tf | 6 ------ 2 files changed, 7 deletions(-) diff --git a/deploy/gcp/modules/cloud-lb/main.tf b/deploy/gcp/modules/cloud-lb/main.tf index 0c16d5ebcfa..3054a7d19d7 100644 --- a/deploy/gcp/modules/cloud-lb/main.tf +++ b/deploy/gcp/modules/cloud-lb/main.tf @@ -109,7 +109,6 @@ resource "google_compute_backend_service" "router" { protocol = "HTTPS" port_name = "http" load_balancing_scheme = "EXTERNAL_MANAGED" - timeout_sec = var.router_backend_timeout_seconds log_config { enable = true diff --git a/deploy/gcp/modules/cloud-lb/variables.tf b/deploy/gcp/modules/cloud-lb/variables.tf index 5696c136d39..6e81dcbf01f 100644 --- a/deploy/gcp/modules/cloud-lb/variables.tf +++ b/deploy/gcp/modules/cloud-lb/variables.tf @@ -77,12 +77,6 @@ variable "router_cloud_run_service_name" { default = "" } -variable "router_backend_timeout_seconds" { - type = number - description = "Backend request timeout for long-running router/model requests." - default = 3600 -} - variable "router_domains" { type = list(string) description = "Hosts routed to the router backend, e.g. [\"router.flatkey.ai\"]."