allow setting multiple schedule task names for product pages

this adds a new setting, product_pages_schedule_task_names, which
is the list version of product_pages_schedule_task_name.
This commit is contained in:
Mike McLean
2021-04-21 17:01:52 -04:00
parent 7084556ab0
commit 42f5f82a89
2 changed files with 29 additions and 16 deletions

View File

@@ -671,8 +671,15 @@ class Config(object):
"product_pages_schedule_task_name": {
"type": str,
"default": "",
"desc": "A schedule task name. This is used to check Product schedules for cases where "
"the stream should be used before release."
"desc": "The name of the governing schedule task. The finish date from the matching"
"task is used to determine if a stream suffix should be added ahead of the GA"
"date. The comparison is case insensitive."
},
"product_pages_schedule_task_names": {
"type": list,
"default": [],
"desc": "Like product_pages_schedule_task_name, but accepts a list. The list is"
"treated as order of preference."
},
"num_threads_for_build_submissions": {
"type": int,