Skip to content

Commit

Permalink
[BugFix] Fix thrift invalid TType error (backport StarRocks#50276) (S…
Browse files Browse the repository at this point in the history
…tarRocks#50289)

Co-authored-by: stdpain <[email protected]>
  • Loading branch information
mergify[bot] and stdpain authored Aug 27, 2024
1 parent 9f7b6d6 commit b472563
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions be/src/exec/pipeline/exec_state_reporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ Status ExecStateReporter::report_exec_status(const TReportExecStatusParams& para
}
coord->reportExecStatus(res, params);
} else {
(void)coord.reopen(config::thrift_rpc_timeout_ms);
std::stringstream msg;
msg << "ReportExecStatus() to " << fe_addr << " failed:\n" << e.what();
LOG(WARNING) << msg.str();
Expand Down Expand Up @@ -285,6 +286,7 @@ Status ExecStateReporter::report_epoch(const TMVMaintenanceTasks& params, ExecEn
}
coord->mvReport(res, params);
} else {
(void)coord.reopen(config::thrift_rpc_timeout_ms);
std::stringstream msg;
msg << "mvReport() to " << fe_addr << " failed:\n" << e.what();
LOG(WARNING) << msg.str();
Expand Down

0 comments on commit b472563

Please sign in to comment.