Expected Behavior
Should be able to run the Python feature server with feast serve
Current Behavior
File "/usr/local/lib/python3.11/site-packages/click/decorators.py", line 33, in new_func
return f(get_current_context(), *args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: serve_command() got an unexpected keyword argument 'no_feature_log'
Steps to reproduce
Run the command feast serve from the feature repo directory
Specifications
- Version: 0.37.1
- Platform: OS
- Subsystem:
Possible Solution
remove the no-feature-log parameter from command
@click.option(
"--no-feature-log",
is_flag=True,
show_default=True,
help="Disable logging served features",
)
Expected Behavior
Should be able to run the Python feature server with
feast serveCurrent Behavior
Steps to reproduce
Run the command
feast servefrom the feature repo directorySpecifications
Possible Solution
remove the no-feature-log parameter from command