Skip to content

Commit

Permalink
fixes bug 1440745 - fix ADI fetch to include http 304 responses
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Feb 28, 2018
1 parent 52676df commit 16c389c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion socorro/cron/jobs/fetch_adi_from_hive.py
Expand Up @@ -64,7 +64,10 @@ class NoRowsWritten(Exception):
domain='addons.mozilla.org' OR
domain='blocklists.settings.services.mozilla.com'
)
and http_status_code = '200'
and (
http_status_code='200' OR
http_status_code='304'
)
and request_url like '/v1/blocklist/3/%%'
and ds='%s'
GROUP BY
Expand Down

0 comments on commit 16c389c

Please sign in to comment.