Reduce expiry time to 5mints.
Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/a4e045d7 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/a4e045d7 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/a4e045d7 Branch: refs/heads/master Commit: a4e045d76280716457f0fd7b58e8f3fc84fe6269 Parents: ae538a5 Author: Nirmal Fernando <[email protected]> Authored: Thu Sep 25 18:00:07 2014 +0530 Committer: Nirmal Fernando <[email protected]> Committed: Thu Sep 25 18:00:18 2014 +0530 ---------------------------------------------------------------------- .../org/apache/stratos/autoscaler/KubernetesClusterContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/a4e045d7/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/KubernetesClusterContext.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/KubernetesClusterContext.java b/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/KubernetesClusterContext.java index 1858401..a64364d 100644 --- a/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/KubernetesClusterContext.java +++ b/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/KubernetesClusterContext.java @@ -35,7 +35,7 @@ public class KubernetesClusterContext implements Serializable{ private Properties properties; // 15 mints as the default - private long expiryTime = 900000; + private long expiryTime = 300000; // pending members private List<MemberContext> pendingMembers;
