File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/common/grpc/src/flight Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,16 @@ use crate::error::{Error, SerdeJsonSnafu};
2121
2222/// The metadata for "DoPut" requests and responses.
2323///
24- /// Currently, there's only a "request_id", for coordinating requests and responses in the streams.
24+ /// Currently, there's a "request_id", for coordinating requests and responses in the streams.
2525/// Client can set a unique request id in this metadata, and the server will return the same id in
2626/// the corresponding response. In doing so, a client can know how to do with its pending requests.
2727#[ derive( Serialize , Deserialize ) ]
2828pub struct DoPutMetadata {
2929 request_id : i64 ,
30- /// Start timestamp of the batch in nanoseconds (optional, for time-windowed batches)
30+ /// Start timestamp of the batch (optional, for time-windowed batches)
3131 #[ serde( skip_serializing_if = "Option::is_none" ) ]
3232 start_timestamp : Option < i64 > ,
33- /// End timestamp of the batch in nanoseconds (optional, for time-windowed batches)
33+ /// End timestamp of the batch (optional, for time-windowed batches)
3434 #[ serde( skip_serializing_if = "Option::is_none" ) ]
3535 end_timestamp : Option < i64 > ,
3636}
You can’t perform that action at this time.
0 commit comments