Merge pull request #2197 from coreos-inc/inclim_secnotwo

Increase limit in securitynotificationworker
This commit is contained in:
Jimmy Zelinskie 2016-12-04 22:04:45 -05:00 committed by GitHub
commit 99f69c9631

View file

@ -14,7 +14,7 @@ logger = logging.getLogger(__name__)
_READING_SECONDS = 120 # 2 minutes
_PROCESSING_SECONDS = 60 * 60 # 1 hour
_LAYER_LIMIT = 100 # The number of layers to request on each page.
_LAYER_LIMIT = 1000 # The number of layers to request on each page.
class SecurityNotificationWorker(QueueWorker):