Closed (fixed)
Project:
Commerce API
Version:
8.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
24 Oct 2025 at 08:50 UTC
Updated:
10 Nov 2025 at 11:59 UTC
Jump to comment: Most recent
Comments
Comment #4
tbkot commentedThe issue was caused by the "content_translation" module, which was installed before the "commerce_order". In the
content_translation_install, theUrl::fromRouteis called, which triggers route rebuild. The commerce API module has its own route provider, which tries to collect all resource types for the "commerce_order" entity type. As the Order module is not installed yet, it cannot get the "customer" profile type and generate a resource type for it in the ResourceTypeRepository service.I have to move the "content_translation" module installation outside of
parent::setUpto remove the warning.Comment #6
jsacksick commented