We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7453f5 commit 4dd6f89Copy full SHA for 4dd6f89
1 file changed
leaf/src/option/mod.rs
@@ -66,14 +66,14 @@ lazy_static! {
66
pub static ref DNS_CACHE_SIZE: usize = {
67
get_env_var_or("DNS_CACHE_SIZE", 512)
68
};
69
+}
70
71
+lazy_static! {
72
/// Maximum number of recent connections stored in StatManager.
73
pub static ref MAX_RECENT_CONNECTIONS: usize = {
74
get_env_var_or("MAX_RECENT_CONNECTIONS", 0)
75
-}
76
-lazy_static! {
77
pub static ref HTTP_USER_AGENT: String = {
78
get_env_var_or_else(
79
"HTTP_USER_AGENT",
0 commit comments