Question

I'm trying to create auto generate coupons in magento 2 but its showing as below:

Message is added to queue, wait to get your coupons soon

Any help will be appreciated?

Was it helpful?

Solution

try to manually process queue with this command

bin/magento queue:consumers:list

view a list of all consumers

bin/magento queue:consumers:start <queue_name>

pass queue_name for process the queue

OTHER TIPS

Try running the following commands:

bin/magento cron:run
bin/magento queue:consumers:start codegeneratorProcessor

Run bin/magento queue:consumers:list you should see this:

product_action_attribute.update
product_action_attribute.website.update
exportProcessor
codegeneratorProcessor
async.operations.all

After run bin/magento queue:consumers:start codegeneratorProcessor. Wait a couple of seconds and refresh the page to see the newly generated coupons.

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top