Pergunta

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

Foi útil?

Solução

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.

Outras dicas

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?

Licenciado em: CC-BY-SA com atribuição
Não afiliado a magento.stackexchange
scroll top