Consider site reachable only with status code < 400 (#89)

This commit is contained in:
Marian Steinbach 2018-11-20 20:14:52 +01:00 committed by GitHub
parent c03ff21a9c
commit 4524cb5714
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -22,6 +22,11 @@ class Rater(AbstractRater):
for url in self.check_results['url_reachability']:
if self.check_results['url_reachability'][url]['exception'] is not None:
continue
# only count status 2** or 3** as reachable
if self.check_results['url_reachability'][url]['status'] >= 400:
continue
count += 1
if count > 0: