1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 14:52:40 +01:00

make arcanist backwards compatible with various conduit versions

Summary: pragmatism wins the day, though I think eventually we might want something really fancy to deal with arcanist and conduit not being up to date with respect to one another

Test Plan: php -l

Reviewers: epriestley

Reviewed By: epriestley

CC: zeeg, aran, Korvin

Maniphest Tasks: T2088

Differential Revision: https://secure.phabricator.com/D3988
This commit is contained in:
Bob Trahan 2012-11-19 17:32:09 -08:00
parent 5ca0f691a1
commit b71666a24a

View file

@ -940,10 +940,12 @@ abstract class ArcanistBaseWorkflow {
} }
$bundle = ArcanistBundle::newFromChanges($changes); $bundle = ArcanistBundle::newFromChanges($changes);
$bundle->setConduit($conduit); $bundle->setConduit($conduit);
$bundle->setProjectID($diff['projectName']); // since the conduit method has changes, assume that these fields
$bundle->setBaseRevision($diff['sourceControlBaseRevision']); // could be unset
$bundle->setRevisionID($diff['revisionID']); $bundle->setProjectID(idx($diff, 'projectName'));
$bundle->setAuthor($diff['author']); $bundle->setBaseRevision(idx($diff, 'sourceControlBaseRevision'));
$bundle->setRevisionID(idx($diff, 'revisionID'));
$bundle->setAuthor(idx($diff, 'author'));
return $bundle; return $bundle;
} }