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); }