mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-13 00:01:03 +01:00
Fix self-cancelling typo
Summary: Ref D18268. This typo cancelled itself out, and I can't find any other callers. Test Plan: arc unit Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D19718
This commit is contained in:
parent
8065433ee8
commit
dbf2302b6c
1 changed files with 2 additions and 2 deletions
|
@ -208,7 +208,7 @@ final class DiffusionRepositoryClusterEngine extends Phobject {
|
||||||
|
|
||||||
$this->synchronizeWorkingCopyFromDevices($fetchable);
|
$this->synchronizeWorkingCopyFromDevices($fetchable);
|
||||||
} else {
|
} else {
|
||||||
$this->synchornizeWorkingCopyFromRemote();
|
$this->synchronizeWorkingCopyFromRemote();
|
||||||
}
|
}
|
||||||
|
|
||||||
PhabricatorRepositoryWorkingCopyVersion::updateVersion(
|
PhabricatorRepositoryWorkingCopyVersion::updateVersion(
|
||||||
|
@ -609,7 +609,7 @@ final class DiffusionRepositoryClusterEngine extends Phobject {
|
||||||
/**
|
/**
|
||||||
* @task internal
|
* @task internal
|
||||||
*/
|
*/
|
||||||
private function synchornizeWorkingCopyFromRemote() {
|
private function synchronizeWorkingCopyFromRemote() {
|
||||||
$repository = $this->getRepository();
|
$repository = $this->getRepository();
|
||||||
$device = AlmanacKeys::getLiveDevice();
|
$device = AlmanacKeys::getLiveDevice();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue