Remove error_message, add log_file in terminate request
This commit is contained in:
parent
f8a03bc18a
commit
2f5a28beb9
2 changed files with 5 additions and 7 deletions
|
@ -25,12 +25,12 @@ enum AuthorizationStatus {
|
|||
|
||||
message AuthorizeResponse {
|
||||
AuthorizationStatus status = 1;
|
||||
string error_message = 2;
|
||||
string session_uuid = 3;
|
||||
string session_uuid = 2;
|
||||
}
|
||||
|
||||
message TerminateRequest {
|
||||
string session_uuid = 1;
|
||||
string log_file = 2;
|
||||
}
|
||||
|
||||
enum TerminateStatus {
|
||||
|
@ -40,5 +40,4 @@ enum TerminateStatus {
|
|||
|
||||
message TerminateResponse {
|
||||
TerminateStatus status = 1;
|
||||
string error_message = 2;
|
||||
}
|
Reference in a new issue