File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,9 +86,9 @@ def __init__(self, online_store_class_name: str):
8686
8787
8888class FeastStoreConfigInvalidName (Exception ):
89- def __init__ (self , online_store_config_class_name : str , store_type = "Online" ):
89+ def __init__ (self , store_config_class_name : str , store_type : str ):
9090 super ().__init__ (
91- f"Online Store Config Class '{ online_store_config_class_name } ' "
91+ f"Config Class '{ store_config_class_name } ' "
9292 f"should end with the string `{ store_type } Config`.'"
9393 )
9494
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ def get_config_class_from_type(
189189 module_name : str , config_class_name : str , store_type : str
190190):
191191 if not config_class_name .endswith (f"{ store_type } Config" ):
192- raise errors .FeastStoreConfigInvalidName (config_class_name )
192+ raise errors .FeastStoreConfigInvalidName (config_class_name , store_type )
193193
194194 # Try importing the module that contains the custom provider
195195 try :
You can’t perform that action at this time.
0 commit comments