-
Notifications
You must be signed in to change notification settings - Fork 37
Open
Description
We have a custom indexer which manages the product prices for us, but it must run before "catalog_product_price" so it may be reindexed correctly for magentos index tables.
Here comes the tricky part: it does not work with this module as it does with the default indexer.
In the default magento indexer you could add a xml depend node to your module, so your indexer may run before another indexer:
<index>
<indexer>
<abc>
<model>custommodule/indexer</model>
</abc>
<cataloginventory_stock>
<depends>
<abc/>
</depends>
</cataloginventory_stock>
</indexer>
</index>
This will work if you reindex via default shell "indexer.php" but does not work with AsyncIndex.
I tried to patch it but failed as I am unsure about how the dependend indexes get their info about the events / productids (or whatever) to index.
Metadata
Metadata
Assignees
Labels
No labels