in generate_side_by_side.py [0:0]
def find_task_group_id(revision, branch, search_crons=False):
# Find the task IDs from this revision first
task_ids_url = TASK_IDS.format(branch, revision)
print("Downloading task ids from: %s" % task_ids_url)
task_ids_data = get_json(task_ids_url)
if "tasks" not in task_ids_data or len(task_ids_data["tasks"]) == 0:
raise Exception("Cannot find any task IDs for %s!" % revision)
task_group_ids = []
for task in task_ids_data["tasks"]:
# Only find the task group ID for the decision task if we
# don't need to search for cron tasks
if not search_crons and not task["namespace"].endswith("decision"):
continue
task_group_url = TASK_INFO.format(task["taskId"])
print("Downloading task group id from: %s" % task_group_url)
task_info = get_json(task_group_url)
task_group_ids.append(task_info["taskGroupId"])
return task_group_ids