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 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.
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.