diff options
author | kruall <kruall@ydb.tech> | 2024-03-07 11:22:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-07 11:22:37 +0300 |
commit | 593fba6be5066f6bc55c6680c27a34cc298063b7 (patch) | |
tree | b694800d7cee3f5c59c9ad478e182ba33918c8e9 | |
parent | e0c725f7db58046b45bb49ac9fcef1ade3e414af (diff) | |
download | ydb-593fba6be5066f6bc55c6680c27a34cc298063b7.tar.gz |
fix TKeyValueTest::TestWriteReadWhileWriteWorks (#2487)
-rw-r--r-- | .github/config/muted_ya.txt | 1 | ||||
-rw-r--r-- | ydb/core/keyvalue/keyvalue_ut.cpp | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/config/muted_ya.txt b/.github/config/muted_ya.txt index 9e24ac1c81d..fb5b7809268 100644 --- a/.github/config/muted_ya.txt +++ b/.github/config/muted_ya.txt @@ -8,7 +8,6 @@ ydb/core/debug_tools/ut OperationLog.ConcurrentWrites ydb/core/quoter/ut QuoterWithKesusTest.PrefetchCoefficient ydb/core/kafka_proxy/ut KafkaProtocol.CreatePartitionsScenario ydb/core/kafka_proxy/ut KafkaProtocol.ProduceScenario -ydb/core/keyvalue/ut TKeyValueTest.TestWriteReadWhileWriteWorks ydb/core/kqp/provider/ut KikimrIcGateway.TestLoadBasicSecretValueFromExternalDataSourceMetadata ydb/core/kqp/ut/federated_query/generic * ydb/core/kqp/ut/olap * diff --git a/ydb/core/keyvalue/keyvalue_ut.cpp b/ydb/core/keyvalue/keyvalue_ut.cpp index f6b14f826c0..332cf805278 100644 --- a/ydb/core/keyvalue/keyvalue_ut.cpp +++ b/ydb/core/keyvalue/keyvalue_ut.cpp @@ -2377,7 +2377,8 @@ Y_UNIT_TEST(TestWriteReadWhileWriteWorks) { write->SetPriority(NKikimrClient::TKeyValueRequest::REALTIME); tc.Runtime->SendToPipe(tc.TabletId, tc.Edge, request.Release(), 0, GetPipeConfigWithRetries()); } - CmdRead({"key2"}, NKikimrClient::TKeyValueRequest::REALTIME, {"value2"}, {}, tc); + + ExecuteRead<>(tc, "key2", "value2", 0, 0, 0); }); } |