You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2016/02/01 18:49:33 UTC

[29/50] brooklyn-server git commit: Revert DynamicCluster.QUARANTINE_FAILED_ENTITIES default to false

Revert DynamicCluster.QUARANTINE_FAILED_ENTITIES default to false

Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/39da2b10
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/39da2b10
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/39da2b10

Branch: refs/heads/0.6.0
Commit: 39da2b1001645dd35eb236b79ff60bedb4a1ee56
Parents: 2f1a207
Author: Aled Sage <al...@gmail.com>
Authored: Thu Nov 14 12:07:55 2013 +0000
Committer: Aled Sage <al...@gmail.com>
Committed: Thu Nov 14 12:07:55 2013 +0000

----------------------------------------------------------------------
 core/src/main/java/brooklyn/entity/group/DynamicCluster.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/39da2b10/core/src/main/java/brooklyn/entity/group/DynamicCluster.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/brooklyn/entity/group/DynamicCluster.java b/core/src/main/java/brooklyn/entity/group/DynamicCluster.java
index 9b0a307..1457203 100644
--- a/core/src/main/java/brooklyn/entity/group/DynamicCluster.java
+++ b/core/src/main/java/brooklyn/entity/group/DynamicCluster.java
@@ -73,7 +73,7 @@ public interface DynamicCluster extends AbstractGroup, Cluster {
 
     @SetFromFlag("quarantineFailedEntities")
     public static final ConfigKey<Boolean> QUARANTINE_FAILED_ENTITIES = new BasicConfigKey<Boolean>(
-            Boolean.class, "dynamiccluster.quarantineFailedEntities", "If true, will quarantine entities that fail to start; if false, will get rid of them (i.e. delete them)", true);
+            Boolean.class, "dynamiccluster.quarantineFailedEntities", "If true, will quarantine entities that fail to start; if false, will get rid of them (i.e. delete them)", false);
 
     public static final AttributeSensor<Lifecycle> SERVICE_STATE = Attributes.SERVICE_STATE;