Merge pull request #3334 from quay/configurable-timeout
Make the timeout for the tags backfill worker configurable
This commit is contained in:
commit
f0d74111d8
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Reference in a new issue