Skip to content

Commit

Permalink
Bumps dispatcher limit from 100 to 1000 (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-afedorov committed Jun 10, 2019
1 parent 9ffe767 commit b8d6b98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runners/alert_dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
GET_ALERTS_QUERY = f"""
SELECT *
FROM results.alerts
WHERE iff(alert:HANDLERS is null, ticket is null, handled is null)
WHERE IFF(alert:HANDLERS IS NULL, ticket IS NULL, handled IS NULL)
AND suppressed=FALSE
ORDER BY event_time ASC
LIMIT 100
LIMIT 1000
"""


Expand Down

0 comments on commit b8d6b98

Please sign in to comment.