Expected Behavior
Feast should raise an exception when trying to get a feature set that does not exist, even when the fail_if_missing parameter is specified.
Current Behavior
Feast prints the following error message and does not raise an exception.
GetFeatureSet failed with code "StatusCode.UNKNOWN"
Steps to reproduce
from feast import Client
client = Client(core_url, serving_url)
client.get_feature_set("invalid_feature_set_name", fail_if_missing=True)
Expected Behavior
Feast should raise an exception when trying to get a feature set that does not exist, even when the
fail_if_missingparameter is specified.Current Behavior
Feast prints the following error message and does not raise an exception.
Steps to reproduce