mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-21 22:32: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) {
|
||||
$this->rebase();
|
||||
$this->squash();
|
||||
$this->squash();
|
||||
} else {
|
||||
$this->merge();
|
||||
}
|
||||
|
@ -1015,7 +1015,7 @@ EOTEXT
|
|||
$this->getConduit()->callMethodSynchronous(
|
||||
'diffusion.looksoon',
|
||||
array(
|
||||
'callsign' => $this->getRepositoryCallsign(),
|
||||
'callsigns' => array($this->getRepositoryCallsign()),
|
||||
));
|
||||
} catch (ConduitClientException $ex) {
|
||||
// If we hit an exception, just ignore it. Likely, we are running
|
||||
|
|
Loading…
Reference in a new issue