From 74a338edfc60d0b481110eeb585388924505b9f8 Mon Sep 17 00:00:00 2001 From: Steffen Eiden Date: Tue, 5 May 2026 14:20:31 +0200 Subject: [PATCH] pvattest: Expand HTTPS timeout to 2 min MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Match the clients timeout to the servers timeout. Reviewed-by: Marc Hartmayer Signed-off-by: Steffen Eiden Signed-off-by: Jan Höppner --- rust/pvattest/src/cmd/check/firmware.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/pvattest/src/cmd/check/firmware.rs b/rust/pvattest/src/cmd/check/firmware.rs index f3e8ed9c..3e2e84e9 100644 --- a/rust/pvattest/src/cmd/check/firmware.rs +++ b/rust/pvattest/src/cmd/check/firmware.rs @@ -16,7 +16,7 @@ use crate::additional::AttestationResult; use crate::cli::CheckOpt; const CHECK_DEFAULT_ENDP: &str = "https://esupport.ibm.com/eccedge/ent/z"; -const TIMEOUT_MAX: Duration = Duration::from_secs(3); +const TIMEOUT_MAX: Duration = Duration::from_secs(120); const USER_AGENT: &str = "s390-tools-pvattest"; const CONTENT_TYPE: &str = "Content-Type: application/json"; const CLIENT_ID: &str = "x-client-id: X";