diff options
author | Nikolay Shestakov <tesseract@ydb.tech> | 2024-01-19 17:57:14 +0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-19 17:57:14 +0500 |
commit | 11cf2d8b8ef164200c3e8adf08b1c90b68ca90fc (patch) | |
tree | 50b355bb30e2135440a59eec88807280b4d4f086 | |
parent | d2ec8b95214dfa662cff6fd3050faa247d81457e (diff) | |
download | ydb-11cf2d8b8ef164200c3e8adf08b1c90b68ca90fc.tar.gz |
remove unnecesary sleep in tests (#1092)
-rw-r--r-- | ydb/services/datastreams/datastreams_ut.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ydb/services/datastreams/datastreams_ut.cpp b/ydb/services/datastreams/datastreams_ut.cpp index b7217e78eb7..664300f93e0 100644 --- a/ydb/services/datastreams/datastreams_ut.cpp +++ b/ydb/services/datastreams/datastreams_ut.cpp @@ -133,7 +133,6 @@ ui32 CheckMeteringFile(TTempFileHandle* meteringFile, const TString& streamPath, std::function<void(const NJson::TJsonValue::TMapType& map)> tags_check, std::function<void(const NJson::TJsonValue::TMapType& map)> labels_check, std::function<void(const NJson::TJsonValue::TMapType& map)> usage_check) { - Sleep(TDuration::Seconds(1)); if (meteringFile->IsOpen()) { meteringFile->Flush(); meteringFile->Close(); |