From 7bdc2a693376f9b43fb531184d4d3a2223fc19bc Mon Sep 17 00:00:00 2001 From: Technosophos Date: Tue, 4 Sep 2012 14:34:49 -0500 Subject: [PATCH] DXCMS-123: Removed tenantID from DBaaS. --- src/HPCloud/Services/DBaaS.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HPCloud/Services/DBaaS.php b/src/HPCloud/Services/DBaaS.php index a943f46..ff662ef 100644 --- a/src/HPCloud/Services/DBaaS.php +++ b/src/HPCloud/Services/DBaaS.php @@ -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; }