Update crates/config/src/sections/experimental.rs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
committed by
Olivier 'reivilibre
parent
184c2845ea
commit
29ab273e5a
@@ -117,7 +117,7 @@ impl ConfigurationSection for ExperimentalConfig {
|
||||
const PATH: Option<&'static str> = Some("experimental");
|
||||
}
|
||||
|
||||
/// Configuration options for the inactive session expiration feature
|
||||
/// Configuration options for the session limit feature
|
||||
#[derive(Clone, Debug, Deserialize, JsonSchema, Serialize)]
|
||||
pub struct SessionLimitConfig {
|
||||
pub soft_limit: NonZeroU64,
|
||||
|
||||
@@ -2702,7 +2702,7 @@
|
||||
}
|
||||
},
|
||||
"SessionLimitConfig": {
|
||||
"description": "Configuration options for the inactive session expiration feature",
|
||||
"description": "Configuration options for the session limit feature",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"hard_limit",
|
||||
@@ -2712,12 +2712,12 @@
|
||||
"soft_limit": {
|
||||
"type": "integer",
|
||||
"format": "uint64",
|
||||
"minimum": 0.0
|
||||
"minimum": 1.0
|
||||
},
|
||||
"hard_limit": {
|
||||
"type": "integer",
|
||||
"format": "uint64",
|
||||
"minimum": 0.0
|
||||
"minimum": 1.0
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user