Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/3.1' into 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mariascharin committed Mar 8, 2017
2 parents 83387d6 + e38242b commit aae7470
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,10 @@ public enum Mode
READ_REPLICA
}

@Description( "Configure the operating mode of the database -- 'SINGLE' for stand-alone operation, 'HA' for " +
"operating as a member in a cluster, 'ARBITER' for an HA-only cluster member with no database, " +
"CORE for a core member of a Causal Clustering cluster, or READ_REPLICA for read replica." )
@Description( "Configure the operating mode of the database -- 'SINGLE' for stand-alone operation, " +
"'HA' for operating as a member in an HA cluster, 'ARBITER' for a cluster member with no database in an HA cluster, " +
"'CORE' for operating as a core member of a Causal Cluster, " +
"or 'READ_REPLICA' for operating as a read replica member of a Causal Cluster." )
public static final Setting<Mode> mode = setting( "dbms.mode", options( Mode.class ), Mode.SINGLE.name() );

@Description( "Id for a cluster instance. Must be unique within the cluster." )
Expand Down

0 comments on commit aae7470

Please sign in to comment.