From 657efc67bc33e5f3cef846bdbdaf090c09386188 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Wed, 26 Feb 2025 13:58:03 -0800 Subject: [PATCH] fix: bump up registry key version to clear off stale entries in dbs --- llama_stack/distribution/store/registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/distribution/store/registry.py b/llama_stack/distribution/store/registry.py index 854e5d5ae..ef770ff72 100644 --- a/llama_stack/distribution/store/registry.py +++ b/llama_stack/distribution/store/registry.py @@ -33,7 +33,7 @@ class DistributionRegistry(Protocol): REGISTER_PREFIX = "distributions:registry" -KEY_VERSION = "v7" +KEY_VERSION = "v8" KEY_FORMAT = f"{REGISTER_PREFIX}:{KEY_VERSION}::" + "{type}:{identifier}"