From c4b87d2a0aa75f988bc83d97086329c9695f1f30 Mon Sep 17 00:00:00 2001 From: Sergey Kuznetsov Date: Wed, 18 Dec 2024 15:19:58 +0000 Subject: [PATCH] test: Remove request timeout from integration tests (#1794) Fixes #1791. --- tests/integration/data/BackendFactoryTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/data/BackendFactoryTests.cpp b/tests/integration/data/BackendFactoryTests.cpp index 3b8e1347..9e2f2981 100644 --- a/tests/integration/data/BackendFactoryTests.cpp +++ b/tests/integration/data/BackendFactoryTests.cpp @@ -61,7 +61,7 @@ struct BackendCassandraFactoryTest : SyncAsioContextTest, util::prometheus::With {"database.cassandra.queue_size_io", ConfigValue{ConfigType::Integer}.optional()}, {"database.cassandra.write_batch_size", ConfigValue{ConfigType::Integer}.defaultValue(20)}, {"database.cassandra.connect_timeout", ConfigValue{ConfigType::Integer}.defaultValue(1).optional()}, - {"database.cassandra.request_timeout", ConfigValue{ConfigType::Integer}.defaultValue(1).optional()}, + {"database.cassandra.request_timeout", ConfigValue{ConfigType::Integer}.optional()}, {"database.cassandra.username", ConfigValue{ConfigType::String}.optional()}, {"database.cassandra.password", ConfigValue{ConfigType::String}.optional()}, {"database.cassandra.certfile", ConfigValue{ConfigType::String}.optional()},