◐ Shell
clean mode source ↗

bug: Incorrect Qdrant Online Store Path in repo_config.py

Description

The repo_config.py file contains an incorrect path for the Qdrant online store in the LEGACY_ONLINE_STORE_CLASS_FOR_TYPE and also in ONLINE_STORE_CLASS_FOR_TYPE dictionary. The current path points to a non-existent module:

"feast.infra.online_stores.contrib.qdrant.QdrantOnlineStore": "feast.infra.online_stores.cqdrant.QdrantOnlineStore",

This causes issues when trying to use the Qdrant online store with legacy configurations.

Current Behavior

When using a legacy configuration that references the Qdrant online store, the system fails to find the correct module path, resulting in import errors.

Expected Behavior

The path should point to the correct Qdrant online store module:

"feast.infra.online_stores.contrib.qdrant.QdrantOnlineStore": "feast.infra.online_stores.qdrant_online_store.qdrant.QdrantOnlineStore",