diff --git a/tripleoci/config.py b/tripleoci/config.py index 81cf812..7625a79 100644 --- a/tripleoci/config.py +++ b/tripleoci/config.py @@ -65,6 +65,10 @@ 'builds?pipeline=openstack-periodic'), ('https://review.rdoproject.org/zuul/api/' 'builds?pipeline=openstack-periodic-24hr'), + ('https://review.rdoproject.org/zuul/api/' + 'builds?pipeline=openstack-periodic-master'), + ('https://review.rdoproject.org/zuul/api/' + 'builds?pipeline=openstack-periodic-latest-released'), ] PERIODIC_URLS = [] diff --git a/tripleoci/periodic.py b/tripleoci/periodic.py index e429fcf..91c3713 100644 --- a/tripleoci/periodic.py +++ b/tripleoci/periodic.py @@ -37,8 +37,8 @@ def _get_list(self): web = Web(url=url) req = web.get() if req is None or int(req.status_code) != 200: - log.warning( - "Trying again to download periodic page ".format(url)) + log.warning("Trying again to download periodic page {}" + "".format(url)) req = web.get() if req is None or int(req.status_code) != 200: log.error(