I'm using magento v2Magento version 2.2.5 and i'veI've created a cron job for my custom module, but it's often missed, first iI setup the cron to run every 5 minutes
<group id="default"> <job instance="Custom\Module\Cron\SyncTransaction" method="execute" name="lime_sepulsa_synctransaction"> <schedule>*/5 * * * *</schedule> </job> </group> then iI tried to fix it by setting up the cron to run every minute, but still got the same result
<group id="default"> <job instance="Custom\Module\Cron\SyncTransaction" method="execute" name="lime_sepulsa_synctransaction"> <schedule>* * * * *</schedule> </job> </group> 
