Differential D19357 Diff 46306 src/applications/diffusion/ssh/DiffusionGitReceivePackSSHWorkflow.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/diffusion/ssh/DiffusionGitReceivePackSSHWorkflow.php
| Show All 23 Lines | protected function executeRepositoryOperations() { | ||||
| $this->requireWriteAccess(); | $this->requireWriteAccess(); | ||||
| $cluster_engine = id(new DiffusionRepositoryClusterEngine()) | $cluster_engine = id(new DiffusionRepositoryClusterEngine()) | ||||
| ->setViewer($viewer) | ->setViewer($viewer) | ||||
| ->setRepository($repository) | ->setRepository($repository) | ||||
| ->setLog($this); | ->setLog($this); | ||||
| if ($this->shouldProxy()) { | if ($this->shouldProxy()) { | ||||
| $command = $this->getProxyCommand(); | $command = $this->getProxyCommand(true); | ||||
| $did_synchronize = false; | $did_synchronize = false; | ||||
| if ($device) { | if ($device) { | ||||
| $this->writeClusterEngineLogMessage( | $this->writeClusterEngineLogMessage( | ||||
| pht( | pht( | ||||
| "# Push received by \"%s\", forwarding to cluster host.\n", | "# Push received by \"%s\", forwarding to cluster host.\n", | ||||
| $device->getName())); | $device->getName())); | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 95 Lines • Show Last 20 Lines | |||||