Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
8.8.1
Description
After I execute a feature extraction with a feature store that doesn't exist, it appears in the list of feature stores.
Here an example.
Before the feature extraction query:
{
"responseHeader":
,
"featureStores": [
"first_store",
"second_store"
]
}
I then execute the feature extraction query with a store that doesn't exist:
[features store=*third_store* efi.first_feature=1 efi.second_feature=1]
Then the feature store list becomes:
{
"responseHeader":
,
"featureStores": [
"first_store",
"second_store",
"third_store"
]
}
After reloading the collection we return to see the correct feature stores:
{
"responseHeader":
,
"featureStores": [
"first_store",
"second_store"
]
}
It seems like a temporarily empty store is created after the feature extraction request. This shouldn't happen.