mozci/util/taskcluster.py [122:128]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    token = False
    # Support pagination using continuation token
    while token is not None:
        extra_params = "?" + urlencode({"continuationToken": token}) if token else ""
        results = _do_request(url + extra_params).json()
        yield from results.get("tasks", [])
        token = results.get("continuationToken")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



mozci/util/taskcluster.py [147:153]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    token = False
    # Support pagination using continuation token
    while token is not None:
        extra_params = "?" + urlencode({"continuationToken": token}) if token else ""
        results = _do_request(url + extra_params).json()
        yield from results.get("tasks", [])
        token = results.get("continuationToken")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



