From 3469d496d44f6d5aa720725ec2a32cf4c26ffcdd Mon Sep 17 00:00:00 2001 From: sbaluja Date: Tue, 10 Feb 2026 15:33:38 -0500 Subject: [PATCH] Update bedrock-runtime-integration-tests to have request/connect timeout of 30s --- .../IntegrationTests.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/aws-cpp-sdk-bedrock-runtime-integration-tests/IntegrationTests.cpp b/tests/aws-cpp-sdk-bedrock-runtime-integration-tests/IntegrationTests.cpp index 14b7d812041..3f7d7267baa 100644 --- a/tests/aws-cpp-sdk-bedrock-runtime-integration-tests/IntegrationTests.cpp +++ b/tests/aws-cpp-sdk-bedrock-runtime-integration-tests/IntegrationTests.cpp @@ -40,6 +40,8 @@ class BedrockRuntimeTests : public ::testing::Test void SetUp() { Aws::Client::ClientConfiguration config; + config.connectTimeoutMs = 30000; + config.requestTimeoutMs = 30000; config.region = AWS_TEST_REGION; m_client = Aws::MakeShared(ALLOCATION_TAG, config); }