Skip to content

Commit

Permalink
add missing !>= operator in rest queries
Browse files Browse the repository at this point in the history
  • Loading branch information
sni committed Jul 12, 2023
1 parent 7c78b8e commit ba20809
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Thruk/Utils/Status.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2656,7 +2656,8 @@ sub parse_lexical_filter {
'>' => 1,
'<' => 1,
'<=' => 1,
'>=' => 1,
'>=' => 1,
'!>=' => 1,
'like' => 1,
'unlike' => 1,
};
Expand Down

0 comments on commit ba20809

Please sign in to comment.