refactor: remove **all** unnecessary 'optional' notation (#91)

This commit is contained in:
zyy17
2023-08-30 11:08:14 +08:00
committed by GitHub
parent ec2d346e09
commit e8e228b026
14 changed files with 685 additions and 1114 deletions
+2 -2
View File
@@ -30,9 +30,9 @@ message RequestHeader {
// The `dbname` for the request
string dbname = 4;
// TraceID of request
optional uint64 trace_id = 5;
uint64 trace_id = 5;
// SpanID of request
optional uint64 span_id = 6;
uint64 span_id = 6;
}
message ResponseHeader { Status status = 1; }