We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should be able to run the Python feature server with feast serve
feast serve
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'
Run the command feast serve from the feature repo directory
remove the no-feature-log parameter from command
@click.option( "--no-feature-log", is_flag=True, show_default=True, help="Disable logging served features", )
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Expected Behavior
Should be able to run the Python feature server with
feast serve
Current Behavior
Steps to reproduce
Run the command
feast serve
from the feature repo directorySpecifications
Possible Solution
remove the no-feature-log parameter from command
The text was updated successfully, but these errors were encountered: