Skip to content

Commit

Permalink
Merge pull request #67 from cloud-gov/chore-lower-page-limit
Browse files Browse the repository at this point in the history
chore: lower url limit
  • Loading branch information
apburnes authored Oct 9, 2024
2 parents a6996ed + 0cba531 commit bff52b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/a11y/definition.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def handler(self):
)
)
self.logger.info(f'{len(data)} urls found')
url_limit = 500
url_limit = 400
if len(data) > url_limit:
self.logger.info(f'limiting scanning to {url_limit} urls')
data = [data[0], *random.sample(data[1:], url_limit - 1)]
Expand Down

0 comments on commit bff52b4

Please sign in to comment.