This commit is contained in:
despiegk 2025-05-13 09:22:57 +03:00
parent dbd44043cb
commit d609aa8094

View File

@ -347,7 +347,7 @@ impl RedisStorage {
let collections = keys.iter()
.filter_map(|key| {
if key.starts_with(&prefix) {
if key.starts_with(&prefix) && !key.ends_with(":path") {
Some(key[prefix_len..].to_string())
} else {
None