Repository: stratos Updated Branches: refs/heads/4.1.0-test c6f2dc31b -> 24f7f122f
Fixing NPE at instance termination Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/24f7f122 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/24f7f122 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/24f7f122 Branch: refs/heads/4.1.0-test Commit: 24f7f122f2b392a98306151a62b73bd0685d5fb9 Parents: c6f2dc3 Author: Lahiru Sandaruwan <[email protected]> Authored: Thu Dec 11 16:14:55 2014 +0530 Committer: Lahiru Sandaruwan <[email protected]> Committed: Thu Dec 11 16:15:04 2014 +0530 ---------------------------------------------------------------------- .../org/apache/stratos/cloud/controller/domain/IaasProvider.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/24f7f122/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/domain/IaasProvider.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/domain/IaasProvider.java b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/domain/IaasProvider.java index 159e2d4..f8870b6 100644 --- a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/domain/IaasProvider.java +++ b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/domain/IaasProvider.java @@ -88,6 +88,7 @@ public class IaasProvider implements Serializable { this.type = anIaasProvider.getType(); this.name = anIaasProvider.getName(); this.className = anIaasProvider.getClassName(); + this.computeService = anIaasProvider.getComputeService(); this.properties = new HashMap<String,String>(anIaasProvider.getProperties()); this.networkInterfaces = anIaasProvider.getNetworkInterfaces(); this.image = anIaasProvider.getImage();
