You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The method calls fs = feast_client.get_feature_set(name=name). Since no project is provided to get_feature_set, a default project needs to be set in the client.
Either
Allow users to pass feature set ids with projects specified (project/feature_set) or
Allow users to set a default project.
The method should fall back to a default project (default) should one not be provided.
The text was updated successfully, but these errors were encountered:
Expected Behavior
feast feature-sets describe <name>
cannot be used because it doesn't allow the user to set a project, nor does it default to any value.Steps to reproduce
Call
feast feature-sets describe <some_feature_set>
Specifications
Possible Solution
The method calls
fs = feast_client.get_feature_set(name=name)
. Since no project is provided toget_feature_set
, a default project needs to be set in the client.Either
project/feature_set
) orThe method should fall back to a default project (
default
) should one not be provided.The text was updated successfully, but these errors were encountered: