We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61017e2 commit 4e0944aCopy full SHA for 4e0944a
crates/key-value-azure/src/store.rs
@@ -158,7 +158,7 @@ impl Store for AzureCosmosStore {
158
159
if key.contains(|c| illegal_chars.contains(&c)) {
160
return Err(Error::Other(format!(
161
- "Key contains an illegal character. Allowed characters do not include: {}",
+ "Key contains an illegal character. Keys must not include any of: {}",
162
illegal_chars.iter().collect::<String>()
163
)));
164
}
0 commit comments