nixos/cassandra: remove unnecessary literalExample calls
This commit is contained in:
parent
726669ace8
commit
6ad6271d82
@ -154,7 +154,7 @@ in
|
|||||||
listenAddress = mkOption {
|
listenAddress = mkOption {
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.str;
|
||||||
default = "127.0.0.1";
|
default = "127.0.0.1";
|
||||||
example = literalExample "null";
|
example = null;
|
||||||
description = ''
|
description = ''
|
||||||
Address or interface to bind to and tell other Cassandra nodes
|
Address or interface to bind to and tell other Cassandra nodes
|
||||||
to connect to. You _must_ change this if you want multiple
|
to connect to. You _must_ change this if you want multiple
|
||||||
@ -186,7 +186,7 @@ in
|
|||||||
rpcAddress = mkOption {
|
rpcAddress = mkOption {
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.str;
|
||||||
default = "127.0.0.1";
|
default = "127.0.0.1";
|
||||||
example = literalExample "null";
|
example = null;
|
||||||
description = ''
|
description = ''
|
||||||
The address or interface to bind the native transport server to.
|
The address or interface to bind the native transport server to.
|
||||||
|
|
||||||
@ -285,7 +285,7 @@ in
|
|||||||
fullRepairInterval = mkOption {
|
fullRepairInterval = mkOption {
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.str;
|
||||||
default = "3w";
|
default = "3w";
|
||||||
example = literalExample "null";
|
example = null;
|
||||||
description = ''
|
description = ''
|
||||||
Set the interval how often full repairs are run, i.e.
|
Set the interval how often full repairs are run, i.e.
|
||||||
<literal>nodetool repair --full</literal> is executed. See
|
<literal>nodetool repair --full</literal> is executed. See
|
||||||
@ -308,7 +308,7 @@ in
|
|||||||
incrementalRepairInterval = mkOption {
|
incrementalRepairInterval = mkOption {
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.str;
|
||||||
default = "3d";
|
default = "3d";
|
||||||
example = literalExample "null";
|
example = null;
|
||||||
description = ''
|
description = ''
|
||||||
Set the interval how often incremental repairs are run, i.e.
|
Set the interval how often incremental repairs are run, i.e.
|
||||||
<literal>nodetool repair</literal> is executed. See
|
<literal>nodetool repair</literal> is executed. See
|
||||||
|
Loading…
x
Reference in New Issue
Block a user