From adfd1a90674e086c17ac002bf73fb5d0e376a141 Mon Sep 17 00:00:00 2001 From: tegwick Date: Sun, 21 Jun 2026 20:56:35 +0200 Subject: [PATCH] fix(STATE-WP-0064): allow 360s POST timeout on state-hub bridge proxy Consistency sweeps exceed the previous 30s urllib timeout when triggered from Railiance01 activity-core through actcore-state-hub-bridge. --- k8s/railiance/20-runtime.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/k8s/railiance/20-runtime.yaml b/k8s/railiance/20-runtime.yaml index 2d82ee5..c527b25 100644 --- a/k8s/railiance/20-runtime.yaml +++ b/k8s/railiance/20-runtime.yaml @@ -607,7 +607,8 @@ spec: method=self.command, ) try: - with urlopen(request, timeout=30) as response: + timeout = 360 if self.command == "POST" else 30 + with urlopen(request, timeout=timeout) as response: payload = response.read() self.send_response(response.status) for key, value in response.headers.items():