You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by is...@apache.org on 2015/11/09 08:50:18 UTC

stratos git commit: fixing STRATOS-1603

Repository: stratos
Updated Branches:
  refs/heads/stratos-4.1.x 2ff85274b -> fde5c2d1d


fixing STRATOS-1603


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/fde5c2d1
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/fde5c2d1
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/fde5c2d1

Branch: refs/heads/stratos-4.1.x
Commit: fde5c2d1d62d540ac6dc8c1c66f1e2b8864d04d0
Parents: 2ff8527
Author: Isuru Haththotuwa <is...@apache.org>
Authored: Mon Nov 9 12:57:11 2015 +0530
Committer: Isuru Haththotuwa <is...@apache.org>
Committed: Mon Nov 9 13:17:19 2015 +0530

----------------------------------------------------------------------
 .../cloud/controller/services/impl/CloudControllerServiceUtil.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/fde5c2d1/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceUtil.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceUtil.java b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceUtil.java
index 8a415c4..4edc701 100644
--- a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceUtil.java
+++ b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceUtil.java
@@ -75,7 +75,7 @@ public class CloudControllerServiceUtil {
             throws InvalidPartitionException {
         if (iaasProvider != null) {
             // if this is a IaaS based partition
-            Iaas iaas = iaasProvider.getIaas();
+            Iaas iaas = iaasProvider.buildIaas();
             PartitionValidator validator = iaas.getPartitionValidator();
             validator.setIaasProvider(iaasProvider);
             Properties partitionProperties = CloudControllerUtil.toJavaUtilProperties(partition.getProperties());