diff --git a/proto/api_v2/query.proto b/proto/api_v2/query.proto index 7c69b3a..7aef8ff 100644 --- a/proto/api_v2/query.proto +++ b/proto/api_v2/query.proto @@ -66,11 +66,13 @@ message ArchiveTraceRequest { ]; // Optional. The start time to search trace ID. google.protobuf.Timestamp start_time = 2 [ - (gogoproto.stdtime) = true + (gogoproto.stdtime) = true, + (gogoproto.nullable) = false ]; // Optional. The end time to search trace ID. google.protobuf.Timestamp end_time = 3 [ - (gogoproto.stdtime) = true + (gogoproto.stdtime) = true, + (gogoproto.nullable) = false ]; }