Skip to content

Commit 228cbf9

Browse files
Naming, docs #13747
1 parent e557ab3 commit 228cbf9

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

deps/rabbit/docs/rabbitmq.conf.example

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -384,9 +384,10 @@
384384
## properties that may conflict or significantly change queue behavior and semantics, such as the 'exclusive' field.
385385
# quorum_queue.property_equivalence.relaxed_checks_on_redeclaration = true
386386

387-
## Sets the initial quorum queue cluster size for newly declared quorum queues.
388-
## This value will be overridden if the 'x-quorum-initial-group-size' queue argument is provided.
389-
# quorum_queue.cluster_size = 3
387+
## Sets the initial quorum queue replica count for newly declared quorum queues.
388+
## This value can be overridden using the 'x-quorum-initial-group-size' queue argument
389+
## at declaration time.
390+
# quorum_queue.initial_cluster_size = 3
390391

391392
## Sets the maximum number of unconfirmed messages a channel can send
392393
## before publisher flow control is triggered.

deps/rabbit/priv/schema/rabbit.schema

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2610,7 +2610,7 @@ end}.
26102610
{mapping, "quorum_queue.property_equivalence.relaxed_checks_on_redeclaration", "rabbit.quorum_relaxed_checks_on_redeclaration", [
26112611
{datatype, {enum, [true, false]}}]}.
26122612

2613-
{mapping, "quorum_queue.cluster_size", "rabbit.quorum_cluster_size", [
2613+
{mapping, "quorum_queue.initial_cluster_size", "rabbit.quorum_cluster_size", [
26142614
{datatype, integer},
26152615
{validators, ["non_zero_positive_integer"]}
26162616
]}.

deps/rabbit/test/config_schema_SUITE_data/rabbit.snippets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1067,14 +1067,14 @@ credential_validator.regexp = ^abc\\d+",
10671067
]}],
10681068
[]},
10691069

1070-
{quorum_cluster_size,
1071-
"quorum_queue.cluster_size = 3",
1070+
{quorum_queue_initial_cluster_size,
1071+
"quorum_queue.initial_cluster_size = 3",
10721072
[{rabbit, [
10731073
{quorum_cluster_size, 3}
10741074
]}],
10751075
[]},
10761076

1077-
{quorum_commands_soft_limit,
1077+
{quorum_queue_commands_soft_limit,
10781078
"quorum_queue.commands_soft_limit = 32",
10791079
[{rabbit, [
10801080
{quorum_commands_soft_limit, 32}

0 commit comments

Comments
 (0)