Contribution Date
Technology
Contribution Project
Contribution Details
Still facing this issue and have found a perfectly working workaround.
Add install file for the feature and lock the server component
/**
* Implements hook_install()
*/
function FEATURE_NAME_install() {
// locking search_api_server to stop running into base table or view not found issue
features_feature_lock('FEATURE_NAME', 'search_api_server');
}
It is definitely a workaround and not a solution, but a working workaround.
Contribution Issue Link
Files count
0
Patches count
0