Skip to content

Commit

Permalink
Replaced int type with int64 (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejjwojcik authored Apr 22, 2022
1 parent 6f92311 commit 2552e75
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions agent/filters.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,11 @@ func NewIntegerFilter(values []int64, inclusive bool) *integerFilter {
// GT - greater than
// EQ - equal
type RangeFilter struct {
LTE int `json:"lte,omitempty"`
LT int `json:"lt,omitempty"`
GTE int `json:"gte,omitempty"`
GT int `json:"gt,omitempty"`
EQ int `json:"eq,omitempty"`
LTE int64 `json:"lte,omitempty"`
LT int64 `json:"lt,omitempty"`
GTE int64 `json:"gte,omitempty"`
GT int64 `json:"gt,omitempty"`
EQ int64 `json:"eq,omitempty"`
}

// DateRangeFilter represents structure to define a range in which filtered dates should be matched
Expand Down

0 comments on commit 2552e75

Please sign in to comment.