8000 fix description of NetworkFeature options · whitewum/arangodb@373a7ca · GitHub
[go: up one dir, main page]

Skip to content

Commit 373a7ca

Browse files
committed
fix description of NetworkFeature options
1 parent 2c4f7bb commit 373a7ca

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

arangod/Network/NetworkFeature.cpp

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,18 +81,22 @@ NetworkFeature::NetworkFeature(application_features::ApplicationServer& server,
8181
}
8282

8383
void NetworkFeature::collectOptions(std::shared_ptr<options::ProgramOptions> options) {
84-
options->addSection("--network", "Networking ");
84+
options->addSection("network", "Configure cluster-internal networking");
8585

8686
options->addOption("--network.io-threads", "number of network IO threads",
87-
new UInt32Parameter(&_numIOThreads));
87+
new UInt32Parameter(&_numIOThreads))
88+
.setIntroducedIn(30600);
8889
options->addOption("--network.max-open-connections",
8990
"max open network connections",
90-
new UInt64Parameter(&_maxOpenConnections));
91+
new UInt64Parameter(&_maxOpenConnections))
92+
.setIntroducedIn(30600);
9193
options->addOption("--network.idle-connection-ttl",
9294
"default time-to-live of idle connections (in milliseconds)",
93-
new UInt64Parameter(&_idleTtlMilli));
95+
new UInt64Parameter(&_idleTtlMilli))
96+
.setIntroducedIn(30600);
9497
options->addOption("--network.verify-hosts", "verify hosts when using TLS",
95-
new BooleanParameter(&_verifyHosts));
98+
new BooleanParameter(&_verifyHosts))
99+
.setIntroducedIn(30600);
96100

97101
_gcfunc = [this](bool canceled) {
98102
if (canceled) {

0 commit comments

Comments
 (0)
0