Commit c3e15adf authored by vicotor's avatar vicotor

update protocol

parent cf31e2d1
...@@ -75,4 +75,5 @@ message TaskResponse { ...@@ -75,4 +75,5 @@ message TaskResponse {
bool task_is_succeed = 6; bool task_is_succeed = 6;
string task_error = 7; string task_error = 7;
int32 task_result_code = 8; int32 task_result_code = 8;
string task_execute_error = 9;
} }
\ No newline at end of file
This diff is collapsed.
...@@ -107,7 +107,8 @@ message SubmitTaskResult { ...@@ -107,7 +107,8 @@ message SubmitTaskResult {
bytes task_result_body = 5; // result body. bytes task_result_body = 5; // result body.
bool is_successed = 6; // 任务是否成功 bool is_successed = 6; // 任务是否成功
uint64 task_execute_duration = 7; // 任务实际执行时间, us 为单位 uint64 task_execute_duration = 7; // 任务实际执行时间, us 为单位
int32 task_result_code = 8; int32 task_execute_code = 8; // 任务执行结果状态码
string task_execute_error = 9; // 任务执行错误信息
} }
message SubmitResourceMap { message SubmitResourceMap {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment