magento2.3 定时任务问题
群主是采用了官方的指导方法,非常好,重写时,
etc/module.xml
里面稍微要注意一下
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Amitshree_Mymodule" setup_version="1.0.0">
<sequence>
<module name="Magento_Indexer"/>
</sequence>
</module>
</config>
这里要重新 Magento_Indexer 里面的计划 ,所以,要用 <sequence> 指明一下
还有一个方法:
装 https://github.com/Ethan3600/magento2-CronjobManager 可以系统管理 计划任务
toby2chen 编辑回答