@@ -81,18 +81,22 @@ NetworkFeature::NetworkFeature(application_features::ApplicationServer& server,
81
81
}
82
82
83
83
void NetworkFeature::collectOptions (std::shared_ptr<options::ProgramOptions> options) {
84
- options->addSection (" -- network" , " Networking " );
84
+ options->addSection (" network" , " Configure cluster-internal networking " );
85
85
86
86
options->addOption (" --network.io-threads" , " number of network IO threads" ,
87
- new UInt32Parameter (&_numIOThreads));
87
+ new UInt32Parameter (&_numIOThreads))
88
+ .setIntroducedIn (30600 );
88
89
options->addOption (" --network.max-open-connections" ,
89
90
" max open network connections" ,
90
- new UInt64Parameter (&_maxOpenConnections));
91
+ new UInt64Parameter (&_maxOpenConnections))
92
+ .setIntroducedIn (30600 );
91
93
options->addOption (" --network.idle-connection-ttl" ,
92
94
" default time-to-live of idle connections (in milliseconds)" ,
93
- new UInt64Parameter (&_idleTtlMilli));
95
+ new UInt64Parameter (&_idleTtlMilli))
96
+ .setIntroducedIn (30600 );
94
97
options->addOption (" --network.verify-hosts" , " verify hosts when using TLS" ,
95
- new BooleanParameter (&_verifyHosts));
98
+ new BooleanParameter (&_verifyHosts))
99
+ .setIntroducedIn (30600 );
96
100
97
101
_gcfunc = [this ](bool canceled) {
98
102
if (canceled) {
0 commit comments