Merge ~laney/autopkgtest-cloud:browse-esm into autopkgtest-cloud:master

Proposed by Iain Lane
Status: Merged
Merged at revision: f4e229889af2bcf1b39ff2ec8f220c3aff49b8a0
Proposed branch: ~laney/autopkgtest-cloud:browse-esm
Merge into: autopkgtest-cloud:master
Diff against target: 15 lines (+3/-1)
1 file modified
charms/focal/autopkgtest-web/webcontrol/browse.cgi (+3/-1)
Reviewer Review Type Date Requested Status
Julian Andres Klode (community) Approve
Ubuntu Release Team Pending
Review via email: mp+402401@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Julian Andres Klode (juliank) wrote :

LGTM, push it to edge channel / staging to see if it works and then release to stable channel and upgrade prod.

Revision history for this message
Julian Andres Klode (juliank) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/charms/focal/autopkgtest-web/webcontrol/browse.cgi b/charms/focal/autopkgtest-web/webcontrol/browse.cgi
2index 429876f..f186e89 100755
3--- a/charms/focal/autopkgtest-web/webcontrol/browse.cgi
4+++ b/charms/focal/autopkgtest-web/webcontrol/browse.cgi
5@@ -20,7 +20,9 @@ swift_container_url = None
6
7 UDI = distro_info.UbuntuDistroInfo()
8 ALL_UBUNTU_RELEASES = UDI.all
9-SUPPORTED_UBUNTU_RELEASES = UDI.supported()
10+SUPPORTED_UBUNTU_RELEASES = sorted(
11+ set(UDI.supported() + UDI.supported_esm()), key=ALL_UBUNTU_RELEASES.index
12+)
13
14
15 def init_config():

Subscribers

People subscribed via source and target branches