-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
validation issue with async bulk api when sending products with missing attributes #39527
Comments
Hi @mhaagen85. Thank you for your report.
Join Magento Community Engineering Slack and ask your questions in #github channel. |
Temp fix. trigger get attributes before the validation in Model/ProductRepository.php: |
Preconditions and environment
files:
Steps to reproduce
Send 2 product via async/bulk/V1/products: for example:
[ { "product": { "sku": "existing sku", "type_id": "simple", "created_at": null, "updated_at": null, "custom_attributes": [ { "attribute_code": "cost", "value": "201.96" } ] } }, { "product": { "sku": "new sku", "type_id": "simple", "created_at": null, "updated_at": null, "custom_attributes": [ { "attribute_code": "cost", "value": "28.65" } ] } } ]
The existing product needs to have an custom attribute set. The second will fallback on the default. When the first is handled the custom attribute set is loaded by $productAttributes = $product->getAttributes(); in the ProductRepository after the validation is done. Then when the 2nd product is handled the attribute set which is diffirent from the first one, is not loaded and when checking if the attribute set id is on the attribute it fails and then the attribute is not applicable and is not handled by the validation.
Expected result
Products with missing data for required attributes are not created
Actual result
products with missing data are being created
Additional information
No response
Release note
No response
Triage and priority
The text was updated successfully, but these errors were encountered: