Skip to content

Commit 7fb0f87

Browse files
YassinNouh21jfw-ppi
authored andcommitted
fix: Update Qdrant online store paths in repo_config.py (feast-dev#5207)
Fixes incorrect module paths for Qdrant online store in both LEGACY_ONLINE_STORE_CLASS_FOR_TYPE and ONLINE_STORE_CLASS_FOR_TYPE dictionaries. Updates paths from non-existent module to correct location at feast.infra.online_stores.qdrant_online_store.qdrant.QdrantOnlineStore. Fixes feast-dev#5206 Signed-off-by: Yassin Nouh <70436855+YassinNouh21@users.noreply.github.com> Signed-off-by: Jacob Weinhold <29459386+j-wine@users.noreply.github.com>
1 parent 04d73a5 commit 7fb0f87

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sdk/python/feast/repo_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"feast.infra.online_stores.contrib.ikv_online_store.ikv.IKVOnlineStore": "feast.infra.online_stores.ikv_online_store.ikv.IKVOnlineStore",
6161
"feast.infra.online_stores.contrib.elasticsearch.ElasticSearchOnlineStore": "feast.infra.online_stores.elasticsearch_online_store.ElasticSearchOnlineStore",
6262
"feast.infra.online_stores.contrib.singlestore_online_store.singlestore.SingleStoreOnlineStore": "feast.infra.online_stores.singlestore_online_store.singlestore.SingleStoreOnlineStore",
63-
"feast.infra.online_stores.contrib.qdrant.QdrantOnlineStore": "feast.infra.online_stores.cqdrant.QdrantOnlineStore",
63+
"feast.infra.online_stores.contrib.qdrant.QdrantOnlineStore": "feast.infra.online_stores.qdrant_online_store.qdrant.QdrantOnlineStore",
6464
"feast.infra.online_stores.contrib.milvus.MilvusOnlineStore": "feast.infra.online_stores.milvus.MilvusOnlineStore",
6565
}
6666

@@ -80,7 +80,7 @@
8080
"elasticsearch": "feast.infra.online_stores.elasticsearch_online_store.ElasticSearchOnlineStore",
8181
"remote": "feast.infra.online_stores.remote.RemoteOnlineStore",
8282
"singlestore": "feast.infra.online_stores.singlestore_online_store.singlestore.SingleStoreOnlineStore",
83-
"qdrant": "feast.infra.online_stores.cqdrant.QdrantOnlineStore",
83+
"qdrant": "feast.infra.online_stores.qdrant_online_store.qdrant.QdrantOnlineStore",
8484
"couchbase.online": "feast.infra.online_stores.couchbase_online_store.couchbase.CouchbaseOnlineStore",
8585
"milvus": "feast.infra.online_stores.milvus_online_store.milvus.MilvusOnlineStore",
8686
**LEGACY_ONLINE_STORE_CLASS_FOR_TYPE,

0 commit comments

Comments
 (0)