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

git commit: increasing pod waiting time on update containers

Repository: stratos
Updated Branches:
  refs/heads/master 5523cdb65 -> 50f890f65


increasing pod waiting time on update containers


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

Branch: refs/heads/master
Commit: 50f890f658868ba41eb03a9273d7d60dca848526
Parents: 5523cdb
Author: R-Rajkumar <rr...@gmail.com>
Authored: Sun Oct 12 16:54:42 2014 +0530
Committer: R-Rajkumar <rr...@gmail.com>
Committed: Sun Oct 12 16:54:42 2014 +0530

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


http://git-wip-us.apache.org/repos/asf/stratos/blob/50f890f6/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/impl/CloudControllerServiceImpl.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/impl/CloudControllerServiceImpl.java b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/impl/CloudControllerServiceImpl.java
index 94f47a9..67694cd 100644
--- a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/impl/CloudControllerServiceImpl.java
+++ b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/impl/CloudControllerServiceImpl.java
@@ -1712,7 +1712,7 @@ public class CloudControllerServiceImpl implements CloudControllerService {
                 if(allPods.length == replicas) {
                     break;
                 }
-                Thread.sleep(5000);
+                Thread.sleep(10000);
             }
             
             if (LOG.isDebugEnabled()) {