Page MenuHomePhabricator

Arcanist / Conduit - stop using deprecated diffusion.getcommits
ClosedPublic

Authored by btrahan on Feb 3 2015, 10:31 PM.
Tags
None
Referenced Files
F13133791: D11667.diff
Wed, May 1, 11:31 PM
Unknown Object (File)
Wed, May 1, 1:04 AM
Unknown Object (File)
Mar 31 2024, 8:18 AM
Unknown Object (File)
Mar 29 2024, 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
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
Branch
T7113
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 4307
Build 4320: [Placeholder Plan] Wait for 30 Seconds

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).