| Summary: | commit-queue: fails to replace OO-PS! with reviewer name | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | David Kilzer (:ddkilzer) <ddkilzer> | ||||
| Component: | Tools / Tests | Assignee: | David Kilzer (:ddkilzer) <ddkilzer> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | ap, cdumez, commit-queue, ddkilzer, glenn, oliver, ossy, rniwa | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
David Kilzer (:ddkilzer)
2014-10-16 15:51:49 PDT
Oliver thinks this may be the same issue: $ ./Tools/Scripts/webkit-patch land 137766 Fetching: https://bugs.webkit.org/show_bug.cgi?id=137766&ctype=xml&excludefield=attachmentdata Warning, attachment 239923 [details] on bug 137766 has invalid reviewer (akling) No reviewed patches on bug 137766, cannot infer reviewer. Failed to guess reviewer from bug 137766 and --reviewer= not provided. Not updating ChangeLogs with reviewer. Found no modified ChangeLogs, cannot create a commit message. All changes require a ChangeLog. See: http://webkit.org/coding/contributing.html Found no modified ChangeLogs, cannot create a commit message. All changes require a ChangeLog. See: http://webkit.org/coding/contributing.html Looks like webkit-patch isn't able to fetch the reviewer list? (In reply to comment #1) > Looks like webkit-patch isn't able to fetch the reviewer list? Bugzilla changed to not expose email addresses when no one is logged in, so webkit-patch is loading this URL without logging in first: https://bugs.webkit.org/show_bug.cgi?id=137766&ctype=xml&excludefield=attachmentdata And getting <flag> elements like this: <flag name="review" id="264671" type_id="1" status="+" setter="akling"/> <flag name="commit-queue" id="264709" type_id="3" status="+" setter="cdumez"/> Instead of like this (after logging in): <flag name="review" id="264671" type_id="1" status="+" setter="akling@apple.com"/> <flag name="commit-queue" id="264709" type_id="3" status="+" setter="cdumez@apple.com"/> The fix is to make sure webkit-patch logs in before fetching attachment data. Created attachment 239983 [details]
Patch v1
Committed r174800: <http://trac.webkit.org/changeset/174800> (In reply to comment #4) > Committed r174800: <http://trac.webkit.org/changeset/174800> NOTE: I haven't been able to verify if this is the only fix needed, but this is needed before we determine what the next issue is. |