[Issue#415] Remove timeout on Deploy with Tar or Rsync tasks

This commit is contained in:
Andrés Montañez
2018-03-29 18:33:40 -03:00
parent 7860fea425
commit 5fa99c68f5
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ class ReleaseTask extends AbstractTask implements ExecuteOnRollbackInterface
$cmdLinkRelease = sprintf('cd %s && ln -snf releases/%s current', $hostPath, $releaseId);
/** @var Process $process */
$process = $this->runtime->runRemoteCommand($cmdLinkRelease, false);
$process = $this->runtime->runRemoteCommand($cmdLinkRelease, false, null);
return $process->isSuccessful();
}
}