Make the timeout for the tags backfill worker configurable

This commit is contained in:
Joseph Schorr 2019-01-16 13:30:36 -05:00
parent c60e3e0341
commit 92e6e06e90

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):