From f36b141cf4996044cc86a71cf7ab208351af5ed0 Mon Sep 17 00:00:00 2001 From: Pankaj Garg Date: Thu, 4 Nov 2021 13:29:02 -0700 Subject: [PATCH] Increase CASE timeout to fix CI failures (#11435) --- src/protocols/secure_channel/CASESession.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/protocols/secure_channel/CASESession.cpp b/src/protocols/secure_channel/CASESession.cpp index 62294bcdc58f5d..e7f5200dc9b2dc 100644 --- a/src/protocols/secure_channel/CASESession.cpp +++ b/src/protocols/secure_channel/CASESession.cpp @@ -84,10 +84,10 @@ using HKDF_sha_crypto = HKDF_shaHSM; using HKDF_sha_crypto = HKDF_sha; #endif -// Wait at most 10 seconds for the response from the peer. +// Wait at most 30 seconds for the response from the peer. // This timeout value assumes the underlying transport is reliable. // The session establishment fails if the response is not received within timeout window. -static constexpr ExchangeContext::Timeout kSigma_Response_Timeout = System::Clock::Seconds16(10); +static constexpr ExchangeContext::Timeout kSigma_Response_Timeout = System::Clock::Seconds16(30); CASESession::CASESession() {