문제

I am doing bulk update attribute from admin side in magento2.

I am not getting message of 'attribute has been updated' something like as.

I am getting below message which is attached in screen shot .

enter image description here

도움이 되었습니까?

해결책

In 2.3 queues were added for product mass updates. You would need to run the consumer for product_action_attribute.update for it to process the updates.

In your case it would be bin/magento queue:consumers:start product_action_attribute.update, you could have multiple consumers running at the same time, but I guess one will do.

다른 팁

Thanks for the hint. I am experiencing the same issue. Is it so, that after each bulk update, we now need to run bin/magento queue:consumers:start product_action_attribute.updatevia Composer in order to make changes visible?

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