fix(rust): handle disk cache topology

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
Yujong Lee 2026-09-21 21:44:24 +00:00
parent 98e9e8c602
commit f43f9012f1

View file

@ -83,6 +83,7 @@ impl NativeResponseCache {
match self {
Self::Memory(_) => None,
Self::Redis { cache, .. } => Some(cache.backend().topology()),
Self::Disk(_) => None,
}
}