Version check: update using project name or tarball name

The current code worked only if the project was using the project_name
in kolla/common/config.py, rather than the tarball_base name. This is
only true on master - on stable branches we may switch to use the
tarball_base name, so the regex won't match.

Change-Id: I839649e6ef662ae3ff320edb3106da818956d26d
This commit is contained in:
Mark Goddard 2019-04-10 17:51:41 +01:00
parent 473695264f
commit e9586bd7d5
1 changed files with 2 additions and 0 deletions

View File

@ -102,6 +102,8 @@ def load_all_info(openstack_release):
projects[project_name] = {'latest_version': latest_version,
'tarball_base': tarball_base}
projects[tarball_base] = {'latest_version': latest_version,
'tarball_base': tarball_base}
return projects