In my Magento 2.4.5 open source store, bulk update attributes are not working. Cron is running, and it appears everything else is running fine. Emails are being sent out for example.
I have this code in app/etc/env.php:
'cron_consumers_runner' => [
'cron_run' => true,
'max_messages' => 10000,
'consumers' => [
]
],
and
'queue' => [
'consumers_wait_for_messages' => 0
]
];
We are not running rabbitmq as our hosting (Cloudways) only supports it on a premium support package.
Can anyone advise how to get this running again?
Thanks!