Skip to content

Commit

Permalink
scraper: make minimum allowable file size smaller
Browse files Browse the repository at this point in the history
  • Loading branch information
cgsheeh committed Jan 18, 2022
1 parent a101b87 commit 9260d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/scrape-manifest-ip-ranges.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def get_aws_ips():
sys.exit('HTTP response from Amazon was not 200 OK')

# Sanity check: ensure the file is an appropriate size
if len(ip_ranges_response.content) < 88000:
if len(ip_ranges_response.content) < 8000:
sys.exit('The retrieved AWS JSON document is smaller than the minimum allowable file size')


Expand Down

0 comments on commit 9260d32

Please sign in to comment.