Changeset View
Changeset View
Standalone View
Standalone View
src/applications/diffusion/ssh/DiffusionGitUploadPackSSHWorkflow.php
| Show All 16 Lines | protected function executeRepositoryOperations() { | ||||
| $repository = $this->getRepository(); | $repository = $this->getRepository(); | ||||
| $viewer = $this->getSSHUser(); | $viewer = $this->getSSHUser(); | ||||
| $device = AlmanacKeys::getLiveDevice(); | $device = AlmanacKeys::getLiveDevice(); | ||||
| $skip_sync = $this->shouldSkipReadSynchronization(); | $skip_sync = $this->shouldSkipReadSynchronization(); | ||||
| $is_proxy = $this->shouldProxy(); | $is_proxy = $this->shouldProxy(); | ||||
| if ($is_proxy) { | if ($is_proxy) { | ||||
| $command = $this->getProxyCommand(); | $command = $this->getProxyCommand(false); | ||||
| if ($device) { | if ($device) { | ||||
| $this->writeClusterEngineLogMessage( | $this->writeClusterEngineLogMessage( | ||||
| pht( | pht( | ||||
| "# Fetch received by \"%s\", forwarding to cluster host.\n", | "# Fetch received by \"%s\", forwarding to cluster host.\n", | ||||
| $device->getName())); | $device->getName())); | ||||
| } | } | ||||
| } else { | } else { | ||||
| ▲ Show 20 Lines • Show All 56 Lines • Show Last 20 Lines | |||||