Merge branch 'fix/ssh-timeout' into develop

feature/node-rewrite
Sven Slootweg 11 years ago
commit 996e03aafc

@ -236,11 +236,13 @@ class SshConnector extends CPHPBaseClass
$cmd = urlencode(json_encode($command));
$url = "http://localhost:{$this->tunnel_port}/?key={$this->tunnel_key}&command={$cmd}";
/* Setting a HTTP timeout is going to break long-running requests.
* What the hell was I thinking?!
$context = stream_context_create(array(
'http' => array(
'timeout' => 2.0
)
));
));*/
$response = @file($url, 0, $context);

@ -314,7 +314,6 @@ class Vps extends CPHPDatabaseRecordClass
$command = array("sudo", "vzctl", "create", $this->sInternalId, "--ostemplate", $this->sTemplate->sTemplateName);
$result = $this->sNode->ssh->RunCommand($command, false);
$result->returncode = 0;
if($result->returncode == 0 && strpos($result->stderr, "ERROR") === false)
{

Loading…
Cancel
Save