mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 08:42:41 +01:00
Fix missing 'user' in PhabricatorOwnerPathQuery
Summary: See: - https://github.com/facebook/phabricator/issues/317 - https://github.com/facebook/phabricator/issues/319 This callsite was just overlooked in D5928, I think. Test Plan: Ran `scripts/repository/reparse.php --owners rXnnnn` without hitting an exception. Reviewers: btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D5930
This commit is contained in:
parent
cab28cc91d
commit
571d191a90
3 changed files with 9 additions and 3 deletions
|
@ -53,7 +53,9 @@ final class HeraldCommitAdapter extends HeraldObjectAdapter {
|
||||||
public function loadAffectedPaths() {
|
public function loadAffectedPaths() {
|
||||||
if ($this->affectedPaths === null) {
|
if ($this->affectedPaths === null) {
|
||||||
$result = PhabricatorOwnerPathQuery::loadAffectedPaths(
|
$result = PhabricatorOwnerPathQuery::loadAffectedPaths(
|
||||||
$this->repository, $this->commit);
|
$this->repository,
|
||||||
|
$this->commit,
|
||||||
|
PhabricatorUser::getOmnipotentUser());
|
||||||
$this->affectedPaths = $result;
|
$this->affectedPaths = $result;
|
||||||
}
|
}
|
||||||
return $this->affectedPaths;
|
return $this->affectedPaths;
|
||||||
|
|
|
@ -4,10 +4,12 @@ final class PhabricatorOwnerPathQuery {
|
||||||
|
|
||||||
public static function loadAffectedPaths(
|
public static function loadAffectedPaths(
|
||||||
PhabricatorRepository $repository,
|
PhabricatorRepository $repository,
|
||||||
PhabricatorRepositoryCommit $commit) {
|
PhabricatorRepositoryCommit $commit,
|
||||||
|
PhabricatorUser $user) {
|
||||||
|
|
||||||
$drequest = DiffusionRequest::newFromDictionary(
|
$drequest = DiffusionRequest::newFromDictionary(
|
||||||
array(
|
array(
|
||||||
|
'user' => $user,
|
||||||
'repository' => $repository,
|
'repository' => $repository,
|
||||||
'commit' => $commit->getCommitIdentifier(),
|
'commit' => $commit->getCommitIdentifier(),
|
||||||
));
|
));
|
||||||
|
|
|
@ -8,7 +8,9 @@ final class PhabricatorRepositoryCommitOwnersWorker
|
||||||
PhabricatorRepositoryCommit $commit) {
|
PhabricatorRepositoryCommit $commit) {
|
||||||
|
|
||||||
$affected_paths = PhabricatorOwnerPathQuery::loadAffectedPaths(
|
$affected_paths = PhabricatorOwnerPathQuery::loadAffectedPaths(
|
||||||
$repository, $commit);
|
$repository,
|
||||||
|
$commit,
|
||||||
|
PhabricatorUser::getOmnipotentUser());
|
||||||
$affected_packages = PhabricatorOwnersPackage::loadAffectedPackages(
|
$affected_packages = PhabricatorOwnersPackage::loadAffectedPackages(
|
||||||
$repository,
|
$repository,
|
||||||
$affected_paths);
|
$affected_paths);
|
||||||
|
|
Loading…
Reference in a new issue