You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by im...@apache.org on 2014/12/04 05:25:25 UTC

stratos git commit: Changing distributed object provider class variable to transient in cloud controller context

Repository: stratos
Updated Branches:
  refs/heads/master 39753f288 -> 0e660cf4b


Changing distributed object provider class variable to transient in cloud controller context


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

Branch: refs/heads/master
Commit: 0e660cf4bcc2f7c33a6ca7b5b980de181ab08252
Parents: 39753f2
Author: Imesh Gunaratne <im...@apache.org>
Authored: Thu Dec 4 09:55:02 2014 +0530
Committer: Imesh Gunaratne <im...@apache.org>
Committed: Thu Dec 4 09:55:19 2014 +0530

----------------------------------------------------------------------
 .../stratos/cloud/controller/context/CloudControllerContext.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/0e660cf4/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/context/CloudControllerContext.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/context/CloudControllerContext.java b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/context/CloudControllerContext.java
index 10bff88..d3a61bd 100644
--- a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/context/CloudControllerContext.java
+++ b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/context/CloudControllerContext.java
@@ -72,7 +72,7 @@ public class CloudControllerContext implements Serializable {
 
     private static volatile CloudControllerContext instance;
 
-    private final DistributedObjectProvider distributedObjectProvider;
+    private final transient DistributedObjectProvider distributedObjectProvider;
 
 	/* We keep following maps in order to make the look up time, small. */