Skip to content

Commit

Permalink
fix error url
Browse files Browse the repository at this point in the history
  • Loading branch information
mymeiyi committed Jul 24, 2024
1 parent 7475bd7 commit fcebde6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion be/src/service/internal_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2031,7 +2031,8 @@ void PInternalService::group_commit_insert(google::protobuf::RpcController* cont
response->set_filtered_rows(state->num_rows_load_filtered());
status->to_protobuf(response->mutable_status());
if (!state->get_error_log_file_path().empty()) {
response->set_error_url(state->get_error_log_file_path());
response->set_error_url(
to_load_error_http_path(state->get_error_log_file_path()));
}
_exec_env->new_load_stream_mgr()->remove(load_id);
});
Expand Down

0 comments on commit fcebde6

Please sign in to comment.