Magento – magento2 Schedule new update is not working

magento-2.0magento-enterprisemagento-enterprise-2magento2magento2.1.5

I have installed Magento 2 freshly and Create a schedule for product attribute value update using "Schedule new update".
In staging dashboard it shows but even after time cross the starting time it is not activating as result product attribute value is not updating in frontend.

enter image description here

Even i ran cron for staging.

php bin/magento cron:run --group="staging"

Still it shows the same result.

Please help me for resole this.

Best Answer

It is possible that one of the staging cron jobs is "freezed" (in "running" status in cron_schedule table), most likely it is 'staging_apply_version' job: cron checks the task and since it's in running state it does not start nor is it set to 'failed' because it is considered to be in progress but in fact it is stuck and cannot get completed. Try to remove this job physically or change its status in database directly.

Related Topic