diff --git a/crates/config/src/sections/experimental.rs b/crates/config/src/sections/experimental.rs index b14bcb5a0..3ae1020f7 100644 --- a/crates/config/src/sections/experimental.rs +++ b/crates/config/src/sections/experimental.rs @@ -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, diff --git a/docs/config.schema.json b/docs/config.schema.json index 41b40ad41..409d49fdf 100644 --- a/docs/config.schema.json +++ b/docs/config.schema.json @@ -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 } } }