Skip to content

Commit a9de093

Browse files
reivilibreCopilot
andcommitted
Update crates/config/src/sections/experimental.rs
Co-authored-by: Copilot <[email protected]>
1 parent e7b538c commit a9de093

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

crates/config/src/sections/experimental.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ impl ConfigurationSection for ExperimentalConfig {
117117
const PATH: Option<&'static str> = Some("experimental");
118118
}
119119

120-
/// Configuration options for the inactive session expiration feature
120+
/// Configuration options for the session limit feature
121121
#[derive(Clone, Debug, Deserialize, JsonSchema, Serialize)]
122122
pub struct SessionLimitConfig {
123123
pub soft_limit: NonZeroU64,

docs/config.schema.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2702,7 +2702,7 @@
27022702
}
27032703
},
27042704
"SessionLimitConfig": {
2705-
"description": "Configuration options for the inactive session expiration feature",
2705+
"description": "Configuration options for the session limit feature",
27062706
"type": "object",
27072707
"required": [
27082708
"hard_limit",
@@ -2712,12 +2712,12 @@
27122712
"soft_limit": {
27132713
"type": "integer",
27142714
"format": "uint64",
2715-
"minimum": 0.0
2715+
"minimum": 1.0
27162716
},
27172717
"hard_limit": {
27182718
"type": "integer",
27192719
"format": "uint64",
2720-
"minimum": 0.0
2720+
"minimum": 1.0
27212721
}
27222722
}
27232723
}

0 commit comments

Comments
 (0)