Skip to content

Commit 3c55710

Browse files
author
bystrovserg
committed
YT-26221: Parse control events and save trace info in operations archive
commit_hash:af1a447629e24e0b2fa1e075a45fdc5b5cb16bf4
1 parent 9a4d7c4 commit 3c55710

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

yt/cpp/mapreduce/interface/operation.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3221,8 +3221,8 @@ struct TJobTraceEvent
32213221
i64 EventIndex = 0;
32223222

32233223
///
3224-
/// @brief Raw evenr in json format.
3225-
TString Event;
3224+
/// @brief Raw event in json format.
3225+
std::string Event;
32263226

32273227
///
32283228
/// @brief Time of the event.

yt/cpp/mapreduce/rpc_client/rpc_parameters_serialization.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ NApi::TGetJobTraceOptions SerializeOptionsForGetJobTrace(const TGetJobTraceOptio
786786
result.JobId = NJobTrackerClient::TJobId(YtGuidFromUtilGuid(*options.JobId_));
787787
}
788788
if (options.TraceId_) {
789-
result.TraceId = NScheduler::TJobTraceId(YtGuidFromUtilGuid(*options.TraceId_));
789+
result.TraceId = NJobTrackerClient::TJobTraceId(YtGuidFromUtilGuid(*options.TraceId_));
790790
}
791791
if (options.FromTime_) {
792792
result.FromTime = *options.FromTime_;

0 commit comments

Comments
 (0)