mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Fix diffusion.looksoon call to actually work
Summary: This is all derped up, and we ignore the error so old installs don't break. Underp it. Test Plan: Did `arc land`, verified that the call actually went through successfully. Reviewers: btrahan, davedash Reviewed By: davedash Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D9271
This commit is contained in:
parent
042aa2ee38
commit
e34bdf6c74
1 changed files with 2 additions and 2 deletions
|
@ -191,7 +191,7 @@ EOTEXT
|
||||||
|
|
||||||
if ($this->useSquash) {
|
if ($this->useSquash) {
|
||||||
$this->rebase();
|
$this->rebase();
|
||||||
$this->squash();
|
$this->squash();
|
||||||
} else {
|
} else {
|
||||||
$this->merge();
|
$this->merge();
|
||||||
}
|
}
|
||||||
|
@ -1015,7 +1015,7 @@ EOTEXT
|
||||||
$this->getConduit()->callMethodSynchronous(
|
$this->getConduit()->callMethodSynchronous(
|
||||||
'diffusion.looksoon',
|
'diffusion.looksoon',
|
||||||
array(
|
array(
|
||||||
'callsign' => $this->getRepositoryCallsign(),
|
'callsigns' => array($this->getRepositoryCallsign()),
|
||||||
));
|
));
|
||||||
} catch (ConduitClientException $ex) {
|
} catch (ConduitClientException $ex) {
|
||||||
// If we hit an exception, just ignore it. Likely, we are running
|
// If we hit an exception, just ignore it. Likely, we are running
|
||||||
|
|
Loading…
Reference in a new issue