Repository: brooklyn-server Updated Branches: refs/heads/master 1f2e2a1c4 -> 30573a579
karaf config: enum values are case-sensitive Project: http://git-wip-us.apache.org/repos/asf/brooklyn-server/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-server/commit/588aebce Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-server/tree/588aebce Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-server/diff/588aebce Branch: refs/heads/master Commit: 588aebcee7fc659b681ca42f72a502fb5a9a6785 Parents: 4e07826 Author: Aled Sage <[email protected]> Authored: Tue Jul 5 23:34:39 2016 +0100 Committer: Aled Sage <[email protected]> Committed: Wed Jul 6 11:30:42 2016 +0100 ---------------------------------------------------------------------- .../etc/org.apache.brooklyn.osgilauncher.cfg | 24 ++++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-server/blob/588aebce/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.osgilauncher.cfg ---------------------------------------------------------------------- diff --git a/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.osgilauncher.cfg b/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.osgilauncher.cfg index fd5525f..24a619a 100644 --- a/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.osgilauncher.cfg +++ b/karaf/apache-brooklyn/src/main/resources/etc/org.apache.brooklyn.osgilauncher.cfg @@ -38,22 +38,22 @@ #ignorePersistenceErrors=true # The high availability mode. Possible values are: -# - disabled: management node works in isolation - will not cooperate with any other standby/master nodes in management plane; -# - auto: will look for other management nodes, and will allocate itself as standby or master based on other nodes' states; -# - master: will startup as master - if there is already a master then fails immediately; -# - standby: will start up as lukewarm standby with no state - if there is not already a master then fails immediately, +# - DISABLED: management node works in isolation - will not cooperate with any other standby/master nodes in management plane; +# - AUTO: will look for other management nodes, and will allocate itself as standby or master based on other nodes' states; +# - MASTER: will startup as master - if there is already a master then fails immediately; +# - STANDBY: will start up as lukewarm standby with no state - if there is not already a master then fails immediately, # and if there is a master which subsequently fails, this node can promote itself; -# - hot_standby: will start up as hot standby in read-only mode - if there is not already a master then fails immediately, +# - HOT_STANDBY: will start up as hot standby in read-only mode - if there is not already a master then fails immediately, # and if there is a master which subseuqently fails, this node can promote itself; -# - hot_backup: will start up as hot backup in read-only mode - no master is required, and this node will not become a master -#highAvailabilityMode=disabled +# - HOT_BACKUP: will start up as hot backup in read-only mode - no master is required, and this node will not become a master +#highAvailabilityMode=DISABLED # The persistence mode. Possible values are: -# - disabled: will not read or persist any state; -# - auto: will rebind to any existing state, or start up fresh if no state; -# - rebind: will rebind to the existing state, or fail if no state available; -# - clean: will start up fresh (removing any existing state) -#persistMode=disabled +# - DISABLED: will not read or persist any state; +# - AUTO: will rebind to any existing state, or start up fresh if no state; +# - REBIND: will rebind to the existing state, or fail if no state available; +# - CLEAN: will start up fresh (removing any existing state) +#persistMode=DISABLED # The directory to read/write persisted state (or container name if using an object store) #persistenceDir=
