Skip to content

Commit

Permalink
Increase CASE timeout to fix CI failures (#11435)
Browse files Browse the repository at this point in the history
  • Loading branch information
pan-apple authored and pull[bot] committed Jan 24, 2024
1 parent 846f914 commit 2552133
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/protocols/secure_channel/CASESession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down

0 comments on commit 2552133

Please sign in to comment.