Fix release-id fetching for release job

With a recent patch a new release job error came up [1]:
when fetching the release-id from the series_status.yaml the yaml
parser resolves the new names (eg: 2023.1) as float, so we have to
convert it to string to be able to concatenate it to 'stable/' string.

[1]
File "/home/zuul/scripts/release-tools/process_release_requests.py", line 116, in get_branch
branch = "stable/" + series.get("release-id", series_name)
TypeError: can only concatenate str (not "float") to str

Change-Id: I4e317919292d7481b2ffd15b68473fff5b4b9aaf
This commit is contained in:
Előd Illés 2023-06-28 20:40:03 +02:00
parent 26df6ba501
commit 5ded5656e8
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ def get_branch(series_status, series_name):
branch = "master"
elif series.get("name") == series_name:
# Grab the release-id; then fall back to the supplied name
branch = "stable/" + series.get("release-id", series_name)
branch = "stable/" + str(series.get("release-id", series_name))
return branch