We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c642b42 commit ec876d6Copy full SHA for ec876d6
sdk/python/feast/errors.py
@@ -88,7 +88,8 @@ def __init__(self, online_store_class_name: str):
88
class FeastStoreConfigInvalidName(Exception):
89
def __init__(self, online_store_config_class_name: str, store_type="Online"):
90
super().__init__(
91
- f"Online Store Config Class '{online_store_config_class_name}' should end with the string `{store_type}StoreConfig`.'"
+ f"Online Store Config Class '{online_store_config_class_name}' "
92
+ f"should end with the string `{store_type}Config`.'"
93
)
94
95
0 commit comments