Skip to content

Commit 2ff65c1

Browse files
committed
Avoid extra changes
1 parent a684503 commit 2ff65c1

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

ydb/library/yql/providers/generic/actors/yql_generic_lookup_actor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ namespace NYql::NDq {
315315
return result;
316316
}
317317

318-
NYql::NConnector::NApi::TDataSourceInstance GetDataSourceInstanceWithToken() const {
318+
NYql::TGenericDataSourceInstance GetDataSourceInstanceWithToken() const {
319319
auto dsi = LookupSource.data_source_instance();
320320
//Note: returned token may be stale and we have no way to check or recover here
321321
//Consider to redesign ICredentialsProvider

ydb/library/yql/providers/generic/provider/yql_generic_load_meta.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ namespace NYql {
335335
}
336336
}
337337

338-
void SetLoggingFolderId(NYql::NConnector::NApi::TLoggingDataSourceOptions& options, const TGenericClusterConfig& clusterConfig) {
338+
void SetLoggingFolderId(NYql::TLoggingDataSourceOptions& options, const TGenericClusterConfig& clusterConfig) {
339339
const auto it = clusterConfig.GetDataSourceOptions().find("folder_id");
340340
if (it != clusterConfig.GetDataSourceOptions().end()) {
341341
options.set_folder_id(it->second);

ydb/library/yql/providers/s3/proto/ya.make

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ PEERDIR(
1616
)
1717

1818
IF (NOT PY_PROTOS_FOR)
19-
EXCLUDE_TAGS(GO_PROTO)
19+
ONLY_TAGS(
20+
CPP_PROTO
21+
PY_PROTO
22+
PY3_PROTO
23+
)
2024
ENDIF()
2125

2226
END()

0 commit comments

Comments
 (0)