fix(python-bridge): keep the Azure Blob default TTL mismatch check

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
Yujong Lee 2026-09-21 22:18:59 +00:00
parent ae32609b54
commit 1dfd54579b

View file

@ -278,6 +278,9 @@ impl NativeCacheConfig {
{
Some("facade and native backend containers must match")
}
Some(_) if service.default_ttl().is_some() => {
Some("facade and native backend default TTLs must match")
}
Some(_) => None,
},
}