문제

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?

도움이 되었습니까?

해결책

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

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top