From f43f9012f1a0d58402aaec5393937225c1636869 Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Mon, 21 Sep 2026 21:44:24 +0000 Subject: [PATCH] fix(rust): handle disk cache topology Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- litellm-rust/crates/python-bridge/src/cache/native.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm-rust/crates/python-bridge/src/cache/native.rs b/litellm-rust/crates/python-bridge/src/cache/native.rs index e764fde8b39..50e02338574 100644 --- a/litellm-rust/crates/python-bridge/src/cache/native.rs +++ b/litellm-rust/crates/python-bridge/src/cache/native.rs @@ -83,6 +83,7 @@ impl NativeResponseCache { match self { Self::Memory(_) => None, Self::Redis { cache, .. } => Some(cache.backend().topology()), + Self::Disk(_) => None, } }