mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-09-08 14:28:57 +02:00
[Issue#415] Remove timeout on Deploy with Tar or Rsync tasks
This commit is contained in:
@@ -49,7 +49,7 @@ class RsyncTask extends AbstractTask
|
||||
$cmdRsync = sprintf('rsync -e "ssh -p %d %s" %s %s %s %s@%s:%s', $sshConfig['port'], $sshConfig['flags'], $flags, $excludes, $from, $user, $host, $targetDir);
|
||||
|
||||
/** @var Process $process */
|
||||
$process = $this->runtime->runLocalCommand($cmdRsync, 600);
|
||||
$process = $this->runtime->runLocalCommand($cmdRsync, null);
|
||||
return $process->isSuccessful();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user