Closed
Bug 1436537
Opened 7 years ago
Closed 7 years ago
scripts/deploy_bug.py does the wrong thing regarding merge commits
Categories
(Socorro :: General, task, P1)
Socorro
General
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: willkg, Assigned: willkg)
Details
Attachments
(1 file)
scripts/deploy_bug.py is used to write up deploy bugs. It suggests which sha to use to create the next tag in the socorro repo.
Deploy 308 (bug #1436472) failed because it suggested the wrong sha.
This bug covers fixing it so it's correct.
Plus I use a similar script for Antenna, so I should fix that one, too.
| Assignee | ||
Comment 1•7 years ago
|
||
Grabbing this to fix asap because it makes deploys hard.
Assignee: nobody → willkg
Status: NEW → ASSIGNED
Priority: -- → P1
| Assignee | ||
Comment 2•7 years ago
|
||
Comment 3•7 years ago
|
||
Commits pushed to master at https://github.com/mozilla-services/socorro
https://github.com/mozilla-services/socorro/commit/090afbe26c5835a6775e8d0b61483955c463bda3
fixes bug 1436537 - fixes sha to tag with in deploy_bug.py
Previously we removed the merge commits from the list of commits that got
displayed and then figured out the commit to tag by looking at the last commit
in that list. However, that's wrong--we really want the last commit and not
the last non-merge commit especially since the last commit is likely to be
a merge commit.
This fixes that. It also cleans up the code a bit.
https://github.com/mozilla-services/socorro/commit/2644aac98c00c95cb054feb269fe187448d9bee7
Merge pull request #4328 from willkg/1436537-deploy-bug
fixes bug 1436537 - fixes sha to tag with in deploy_bug.py
Updated•7 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•