You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fs.String(httpsCertFileKey, "", "TLS certificate file for the HTTPs server")
165
165
fs.String(httpAllowedOrigins, "*", "Origins to allow on the HTTP port. Defaults to * which allows all origins. Example: https://*.avax.network https://*.avax-test.network")
166
166
fs.Bool(apiAuthRequiredKey, false, "Require authorization token to call HTTP APIs")
167
-
fs.String(apiAuthPasswordFileKey, "", "Password file used to initially create/validate API authorization tokens. Can be changed via API call.")
167
+
fs.String(apiAuthPasswordFileKey, "", "Password file used to initially create/validate API authorization tokens. Leading and trailing whitespace is removed from the password. Can be changed via API call.")
168
168
// Enable/Disable APIs
169
169
fs.Bool(adminAPIEnabledKey, false, "If true, this node exposes the Admin API")
170
170
fs.Bool(infoAPIEnabledKey, true, "If true, this node exposes the Info API")
fs.Float64(routerHealthMaxDropRateKey, 1, "Node reports unhealthy if the router drops more than this portion of messages.")
189
189
fs.Uint(routerHealthMaxOutstandingRequestsKey, 1024, "Node reports unhealthy if there are more than this many outstanding consensus requests (Get, PullQuery, etc.) over all chains")
190
-
fs.Duration(networkHealthMaxTimeSinceNoReqsKey, 5*time.Minute, "Node reports unhealthy if there is at least 1 outstanding request continuously for this duration")
190
+
fs.Duration(networkHealthMaxOutstandingDurationKey, 5*time.Minute, "Node reports unhealthy if there has been a request outstanding for this duration")
191
191
192
192
// Staking
193
193
fs.Uint(stakingPortKey, 9651, "Port of the consensus server")
0 commit comments