Page MenuHomePhabricator

Arcanist / Conduit - stop using deprecated diffusion.getcommits
ClosedPublic

Authored by btrahan on Feb 3 2015, 10:31 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Mar 31, 8:18 AM
Unknown Object (File)
Fri, Mar 29, 8:36 PM
Unknown Object (File)
Feb 28 2024, 3:48 PM
Unknown Object (File)
Feb 13 2024, 2:04 AM
Unknown Object (File)
Jan 4 2024, 4:09 PM
Unknown Object (File)
Dec 31 2023, 7:46 PM
Unknown Object (File)
Dec 29 2023, 11:27 PM
Unknown Object (File)
Dec 27 2023, 8:34 PM
Subscribers

Details

Summary

Fixes T7113. This one was a bit trickier than others as the API output changed a bit. In particular, there is no "errors" emitted so much as the result set just doesn't include the answer if things are garbage. Ergo, check the "identifier map" to either check for diff existence or to lookup the phid to grab the actual diff data from the "data" part of the result.

Test Plan

called arc backout D11665 and got some working output...!

Diff Detail

Repository
rARC Arcanist
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

btrahan retitled this revision from to Arcanist / Conduit - stop using deprecated diffusion.getcommits.
btrahan updated this object.
btrahan edited the test plan for this revision. (Show Details)
btrahan added a reviewer: epriestley.
epriestley edited edge metadata.
This revision is now accepted and ready to land.Feb 3 2015, 10:32 PM
This revision was automatically updated to reflect the committed changes.
src/workflow/ArcanistWorkflow.php
1015–1016

The old version of this was totally unreadable and neither of us caught it, but this actually inverted the logic.

The intent here is to return false ("do not amend") if the commit is known. That is: do not amend published commits.

This will be fixed in a second (with the fix for T7344).