DXCMS-123: Removed tenantID from DBaaS.

This commit is contained in:
Technosophos
2012-09-04 14:34:49 -05:00
parent b255ed7fba
commit 7bdc2a6933

View File

@@ -99,7 +99,7 @@ class DBaaS {
if ($catalog[$i]['type'] == self::SERVICE_TYPE) {
foreach ($catalog[$i]['endpoints'] as $endpoint) {
if (isset($endpoint['publicURL'])) {
$dbaas = new DBaaS($identity->token(), $endpoint['publicURL'] . '/' . $identity->tenantId(), $identity->tenantName());
$dbaas = new DBaaS($identity->token(), $endpoint['publicURL'], $identity->tenantName());
return $dbaas;
}