-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing Engine inheritance since the disappearing of MySQL search.
- Loading branch information
1 parent
700c580
commit 4eb8d6e
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
*/ | ||
namespace Smile\ElasticsuiteCatalog\Model\ResourceModel; | ||
|
||
use Magento\CatalogSearch\Model\ResourceModel\Engine as MySqlEngine; | ||
use Magento\Elasticsearch\Model\ResourceModel\Engine as ElasticsearchEngine; | ||
|
||
/** | ||
* Elasticsearch search engine implementation. | ||
|
@@ -22,7 +22,7 @@ | |
* @package Smile\ElasticsuiteCatalog | ||
* @author Aurelien FOUCRET <[email protected]> | ||
*/ | ||
class Engine extends MySqlEngine | ||
class Engine extends ElasticsearchEngine | ||
{ | ||
|
||
} |