Skip to content

Commit

Permalink
Fix Lines json key bug (#217)
Browse files Browse the repository at this point in the history
Co-authored-by: ke.like <ke.like@alibaba-inc.com>
  • Loading branch information
liketic and ke.like authored Aug 29, 2023
1 parent a25aa13 commit 2c71d01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type GetLogRequest struct {
From int64 `json:"from"` // unix time, eg time.Now().Unix() - 900
To int64 `json:"to"` // unix time, eg time.Now().Unix()
Topic string `json:"topic"` // @note topic is not used anymore, use __topic__ : xxx in query instead
Lines int64 `json:"lines"` // max 100; offset, lines and reverse is ignored when use SQL in query
Lines int64 `json:"line"` // max 100; offset, lines and reverse is ignored when use SQL in query
Offset int64 `json:"offset"`
Reverse bool `json:"reverse"`
Query string `json:"query"`
Expand Down

0 comments on commit 2c71d01

Please sign in to comment.