Merge pull request #3334 from quay/configurable-timeout

Make the timeout for the tags backfill worker configurable
This commit is contained in:
Joseph Schorr 2019-01-16 13:32:17 -05:00 committed by GitHub
commit f0d74111d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@ from util.migrate.allocator import yield_random_entries
logger = logging.getLogger(__name__)
WORKER_TIMEOUT = 6000
WORKER_TIMEOUT = app.config.get('BACKFILL_TAGS_TIMEOUT', 6000)
class BrokenManifest(ManifestInterface):