We're currently calling sys.exit on exception handling here https://github.com/feast-dev/feast/blob/master/sdk/python/feast/feature_store.py#L301, which will cause the Feast (and wrapping) process to exit. Instead, we should either reraise or even just let the exception bubble up.
We're currently calling sys.exit on exception handling here https://github.com/feast-dev/feast/blob/master/sdk/python/feast/feature_store.py#L301, which will cause the Feast (and wrapping) process to exit. Instead, we should either reraise or even just let the exception bubble up.