Problem/Motivation
I'm doing a migration of a Drupal 7 website with Ubercart installed to Drupal 9 using the migrate modules and the following command:
drush migrate-upgrade --legacy-db-key='migrate' --legacy-root=/var/www/html/docroot
The product variation are migrated but not the products. The only error I have is this:
[notice] Upgrading d7_comment_field_instance
[notice] Missing bundle entity, entity type node_type, entity id product. (/var/www/html/web/core/lib/Drupal/Core/Entity/EntityType.php:885)
[notice] Missing bundle entity, entity type node_type, entity id product_kit. (/var/www/html/web/core/lib/Drupal/Core/Entity/EntityType.php:885)
[notice] Missing bundle entity, entity type node_type, entity id vatexempt. (/var/www/html/web/core/lib/Drupal/Core/Entity/EntityType.php:885)
[notice] Upgrading d7_comment_entity_form_display_subject
[notice] Upgrading d7_comment_entity_display
[notice] Missing bundle entity, entity type node_type, entity id product. (/var/www/html/web/core/lib/Drupal/Core/Entity/EntityType.php:885)
[notice] Missing bundle entity, entity type node_type, entity id product_kit. (/var/www/html/web/core/lib/Drupal/Core/Entity/EntityType.php:885)
[notice] Missing bundle entity, entity type node_type, entity id vatexempt. (/var/www/html/web/core/lib/Drupal/Core/Entity/EntityType.php:885)
[notice] Upgrading d7_comment_entity_form_display
[notice] Missing bundle entity, entity type node_type, entity id product. (/var/www/html/web/core/lib/Drupal/Core/Entity/EntityType.php:885)
[notice] Missing bundle entity, entity type node_type, entity id product_kit. (/var/www/html/web/core/lib/Drupal/Core/Entity/EntityType.php:885)
[notice] Missing bundle entity, entity type node_type, entity id vatexempt. (/var/www/html/web/core/lib/Drupal/Core/Entity/EntityType.php:885)
Could anybody let me know what I could do to debug this further?