Skip to content

Commit

Permalink
Changing minum number of required connections to 0 for bulk,state,rec…
Browse files Browse the repository at this point in the history
…overy channels

Signed-off-by: Chaitanya Gohel <[email protected]>
  • Loading branch information
gashutos committed Apr 8, 2024
1 parent 8d9e12d commit 0e5a177
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,13 +272,13 @@ public final class TransportSettings {
public static final Setting<Integer> CONNECTIONS_PER_NODE_RECOVERY = intSetting(
"transport.connections_per_node.recovery",
2,
1,
0,
Setting.Property.NodeScope
);
public static final Setting<Integer> CONNECTIONS_PER_NODE_BULK = intSetting(
"transport.connections_per_node.bulk",
3,
1,
0,
Setting.Property.NodeScope
);
public static final Setting<Integer> CONNECTIONS_PER_NODE_REG = intSetting(
Expand All @@ -290,7 +290,7 @@ public final class TransportSettings {
public static final Setting<Integer> CONNECTIONS_PER_NODE_STATE = intSetting(
"transport.connections_per_node.state",
1,
1,
0,
Setting.Property.NodeScope
);
public static final Setting<Integer> CONNECTIONS_PER_NODE_PING = intSetting(
Expand Down

0 comments on commit 0e5a177

Please sign in to comment.