Merge pull request #6574 from ahmadw13/v4.x

feat: Add SSH command process timeout configuration
This commit is contained in:
Andras Bacsai
2025-09-25 14:40:29 +02:00
committed by GitHub
+2 -2
View File
@@ -155,7 +155,7 @@ trait ExecuteRemoteCommand
private function executeCommandWithProcess($command, $hidden, $customType, $append, $ignore_errors)
{
$remote_command = SshMultiplexingHelper::generateSshCommand($this->server, $command);
$process = Process::timeout(3600)->idleTimeout(3600)->start($remote_command, function (string $type, string $output) use ($command, $hidden, $customType, $append) {
$process = Process::timeout(config('constants.ssh.command_timeout'))->idleTimeout(3600)->start($remote_command, function (string $type, string $output) use ($command, $hidden, $customType, $append) {
$output = str($output)->trim();
if ($output->startsWith('╔')) {
$output = "\n".$output;
@@ -269,4 +269,4 @@ trait ExecuteRemoteCommand
$this->application_deployment_queue->save();
}
}
}