File tree Expand file tree Collapse file tree 4 files changed +4
-0
lines changed
yt_proto/yt/client/api/rpc_proxy/proto Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -157,6 +157,7 @@ struct TGetQueryTrackerInfoResult
157
157
TString ClusterName;
158
158
NYson::TYsonString SupportedFeatures;
159
159
std::vector<TString> AccessControlObjects;
160
+ std::vector<TString> Clusters;
160
161
};
161
162
162
163
// //////////////////////////////////////////////////////////////////////////////
Original file line number Diff line number Diff line change @@ -2518,6 +2518,7 @@ TFuture<TGetQueryTrackerInfoResult> TClient::GetQueryTrackerInfo(
2518
2518
.ClusterName = FromProto<TString>(rsp->cluster_name ()),
2519
2519
.SupportedFeatures = TYsonString (rsp->supported_features ()),
2520
2520
.AccessControlObjects = FromProto<std::vector<TString>>(rsp->access_control_objects ()),
2521
+ .Clusters = FromProto<std::vector<TString>>(rsp->clusters ())
2521
2522
};
2522
2523
}));
2523
2524
}
Original file line number Diff line number Diff line change @@ -391,6 +391,7 @@ void TGetQueryTrackerInfoCommand::DoExecute(ICommandContextPtr context)
391
391
.Item (" cluster_name" ).Value (result.ClusterName )
392
392
.Item (" supported_features" ).Value (result.SupportedFeatures )
393
393
.Item (" access_control_objects" ).Value (result.AccessControlObjects )
394
+ .Item (" clusters" ).Value (result.Clusters )
394
395
.EndMap ());
395
396
}
396
397
Original file line number Diff line number Diff line change @@ -3449,6 +3449,7 @@ message TRspGetQueryTrackerInfo
3449
3449
required bytes supported_features = 2 ; // YSON
3450
3450
repeated string access_control_objects = 3 ;
3451
3451
optional string query_tracker_stage = 4 ;
3452
+ repeated string clusters = 5 ;
3452
3453
}
3453
3454
3454
3455
////////////////////////////////////////////////////////////////////////////////
You can’t perform that action at this time.
0 commit comments