Skip to content

Commit

Permalink
Add additional pipelines for promotions
Browse files Browse the repository at this point in the history
  • Loading branch information
sshnaidm committed Apr 18, 2019
1 parent 8749e1b commit 3d1e9b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions tripleoci/config.py
Expand Up @@ -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 = []

Expand Down
4 changes: 2 additions & 2 deletions tripleoci/periodic.py
Expand Up @@ -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(
Expand Down

0 comments on commit 3d1e9b4

Please sign in to comment.