Skip to content

Commit 2c93408

Browse files
committed
Fixed style
1 parent 887af1f commit 2c93408

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

ydb/library/yql/providers/pq/gateway/dummy/yql_pq_file_topic_client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ struct TDummyPartitionSession: public NYdb::NTopic::TPartitionSession {
341341
};
342342

343343
TFileTopicClient::TFileTopicClient(THashMap<TDummyPqGateway::TClusterNPath, TDummyTopic> topics)
344-
: Topics_(topics)
344+
: Topics_(std::move(topics))
345345
{}
346346

347347
std::shared_ptr<NYdb::NTopic::IReadSession> TFileTopicClient::CreateReadSession(const NYdb::NTopic::TReadSessionSettings& settings) {

ydb/library/yql/providers/pq/gateway/dummy/yql_pq_file_topic_client.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,5 @@ struct TFileTopicClient : public ITopicClient {
3434
THashMap<TDummyPqGateway::TClusterNPath, TDummyTopic> Topics_;
3535
bool CancelOnFileFinish_ = false;
3636
};
37-
}
37+
38+
}

ydb/tests/tools/fqrun/flame_graph.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -eux
44

55
function cleanup {
6-
rm ./profdata
6+
sudo rm ./profdata
77
rm ./profdata.txt
88
}
99
trap cleanup EXIT

0 commit comments

Comments
 (0)