KickstartHelper: remove superfluos recursion

fixes: #11411
This commit is contained in:
Thomas Gelf 2016-03-24 14:09:14 +01:00
parent a21bb5a247
commit ae08fb47c0
1 changed files with 4 additions and 4 deletions

View File

@ -240,8 +240,8 @@ class KickstartHelper
$master, $master,
$this->getHost(), $this->getHost(),
$this->getPort(), $this->getPort(),
$ep->getResolvedProperty('host', $ep->object_name), $ep->get('host', $ep->object_name),
$ep->getResolvedProperty('port'), $ep->get('port'),
$e->getMessage() $e->getMessage()
); );
} }
@ -304,8 +304,8 @@ class KickstartHelper
$ep = $this->deploymentEndpoint; $ep = $this->deploymentEndpoint;
$client = new RestApiClient( $client = new RestApiClient(
$ep->getResolvedProperty('host', $ep->object_name), $ep->get('host', $ep->object_name),
$ep->getResolvedProperty('port') $ep->get('port')
); );
$apiuser = $this->apiUser(); $apiuser = $this->apiUser();