Closed
Bug 1321411
Opened 9 years ago
Closed 9 years ago
product-details said the latest release was 45.5.1 instead of 50.0.2, breaking downloads all over www.mozilla.org
Categories
(Release Engineering :: Applications: Shipit, defect)
Release Engineering
Applications: Shipit
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1321400
People
(Reporter: nthomas, Unassigned)
References
Details
rail points out that the order of release submission is important, see https://github.com/mozilla-releng/ship-it/blob/master/kickoff/model.py#L285
(Also that he wants to rewrite it ;-).
Fixed up by pushing 45.5.1esr slightly into the past compared to 50.0.2:
mysql> select name, status, submittedAt from firefox_release where name="Firefox-45.5.1esr-build1" or name="Firefox-50.0.2-build1";
+--------------------------+---------+---------------------+
| name | status | submittedAt |
+--------------------------+---------+---------------------+
| Firefox-45.5.1esr-build1 | shipped | 2016-11-30 01:58:46 |
| Firefox-50.0.2-build1 | shipped | 2016-11-30 01:53:32 |
+--------------------------+---------+---------------------+
2 rows in set (0.01 sec)
mysql> update firefox_release set submittedAt="2016-11-30 01:53:00" where name="Firefox-45.5.1esr-build1";
Query OK, 1 row affected (0.02 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> select name, status, submittedAt from firefox_release where name="Firefox-45.5.1esr-build1" or name="Firefox-50.0.2-build1";
+--------------------------+---------+---------------------+
| name | status | submittedAt |
+--------------------------+---------+---------------------+
| Firefox-45.5.1esr-build1 | shipped | 2016-11-30 01:53:00 |
| Firefox-50.0.2-build1 | shipped | 2016-11-30 01:53:32 |
+--------------------------+---------+---------------------+
2 rows in set (0.00 sec)
https://product-details.mozilla.org/1.0/firefox_versions.json now says LATEST_FIREFOX_VERSION": "50.0.2", and the bedrock folks are working on updating to pick that up.
Reporter | ||
Updated•9 years ago
|
Severity: normal → blocker
Summary: product-details said the latest release was 45.5.1 instead of 50.0.1, breaking downloads all over www.mozilla.org → product-details said the latest release was 45.5.1 instead of 50.0.2, breaking downloads all over www.mozilla.org
Reporter | ||
Comment 1•9 years ago
|
||
https://www.mozilla.org/en-US/firefox/all/ now uses 50.0.2 in the download links, if you force reload the page.
Reporter | ||
Comment 2•9 years ago
|
||
pmac forced all the updates on the bedrock side. Lets make a followup for fix this error case.
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Comment 4•9 years ago
|
||
I'd like to keep this open to address the root clause. We need to sort release by version and separate ESR from GA.
Severity: blocker → major
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Comment 5•9 years ago
|
||
Oh, I started working on a patch in bug 1321400. Duping this bug against that other one.
Status: REOPENED → RESOLVED
Closed: 9 years ago → 9 years ago
Resolution: --- → DUPLICATE
Assignee | ||
Updated•4 years ago
|
Component: Applications: ShipIt (backend) → Applications: ShipIt
You need to log in
before you can comment on or make changes to this bug.
Description
•