Migrate exception message should give the index of the process plugin in the pipeline

Created on 8 November 2023, over 1 year ago

Problem/Motivation

          $message = sprintf("%s: %s", $plugin->getPluginId(), $e->getMessage());

This adds the plugin ID to the message, but the same plugin can sometimes be used more than one in a single pipeline.

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

Release notes snippet

๐Ÿ› Bug report
Status

Active

Version

11.0 ๐Ÿ”ฅ

Component
Migrationย  โ†’

Last updated 2 days ago

Created by

๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom joachim

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @joachim
  • Status changed to Needs review over 1 year ago
  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom joachim

    Quick fix, not sure about the message format!

  • Pipeline finished with Failed
    over 1 year ago
    Total: 618s
    #46098
  • Status changed to Needs work over 1 year ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Seemed to have caused some test failures.

    Have not reviewed.

  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia Akhil Babu Chengannur

    Akhil Babu โ†’ made their first commit to this issueโ€™s fork.

  • Status changed to Needs review over 1 year ago
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia Akhil Babu Chengannur

    Tests were failing due to mismatch in message after the change. Updated them.

  • Pipeline finished with Failed
    over 1 year ago
    Total: 594s
    #63195
  • Status changed to Needs work over 1 year ago
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia Akhil Babu Chengannur

    Few more tests should be updated

  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia Akhil Babu Chengannur

    There is a strange Functionaljavscript test failure as well.

       1) Drupal\FunctionalJavascriptTests\Ajax\AjaxTest::testAjaxFocus
        Failed asserting that two strings are equal.
        --- Expected
        +++ Actual
        @@ @@
        -'edit-textfield-2'
        +'edit-textfield-3'
    
    
  • Pipeline finished with Failed
    over 1 year ago
    Total: 635s
    #63492
  • Pipeline finished with Success
    over 1 year ago
    Total: 632s
    #65849
  • Status changed to Needs review over 1 year ago
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia Akhil Babu Chengannur

    Pipeline fixed after rebase. Moving to needs review

  • Status changed to Needs work over 1 year ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    For good practice we should have a complete issue summary.

  • First commit to issue fork.
  • Pipeline finished with Failed
    about 1 month ago
    Total: 1174s
    #439302
  • Pipeline finished with Success
    about 1 month ago
    Total: 1606s
    #439326
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States dcam

    I updated the issue summary.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States dcam

    ๐Ÿ› Exception message in subprocess doesn't say which property in the subprocess was affected Needs work may be a duplicate. It's about exception messages produced by subprocess pipelines. But this issue adds indexes to subprocess pipelines too.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States benjifisher Boston area

    I am not sure how useful this change would be. I guess that @joachim ran into a situation where it would help. The code change is pretty simple, so I do not object to making the change.

    @joachim, can you share the process pipeline you were debugging when you created this issue? It would help to provide context.

    Since the process pipeline is an array, maybe it would be more suggestive to use brackets instead of parentheses. For example, using a line from one of the tests in the MR:

    "d7_field:type:process_field(1): Can't migrate field 'field_event' with 'todate' settings. Enable the datetime_range module. See https://www.drupal.org/docs/8/upgrade/known-issues-when-upgrading-from-drupal-6-or-7-to-drupal-8#datetime"
    

    What do you think of this instead?

    "d7_field:type:process_field[1]: Can't migrate field 'field_event' with 'todate' settings. Enable the datetime_range module. See https://www.drupal.org/docs/8/upgrade/known-issues-when-upgrading-from-drupal-6-or-7-to-drupal-8#datetime"
    

    I also made two small suggestions on the MR.

  • Pipeline finished with Success
    28 days ago
    Total: 3493s
    #443253
  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom joachim

    Sorry, it was 2 years ago at a firm I'm no longer with.

    My best guess is that I had some array processing or extracting process plugin twice in the same pipeline.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States mikelutz Michigan, USA

    Since the process pipeline is an array, maybe it would be more suggestive to use brackets instead of parentheses. For example, using a line from one of the tests in the MR:

    "d7_field:type:process_field(1): Can't migrate field 'field_event' with 'todate' settings. Enable the datetime_range module. See https://www.drupal.org/docs/8/upgrade/known-issues-when-upgrading-from-drupal-6-or-7-to-drupal-8#datetime"
    What do you think of this instead?

    "d7_field:type:process_field[1]: Can't migrate field 'field_event' with 'todate' settings. Enable the datetime_range module. See https://www.drupal.org/docs/8/upgrade/known-issues-when-upgrading-from-drupal-6-or-7-to-drupal-8#datetime"

    It's a shame how difficult it would be, given how we build up that message, but

    "d7_field:type[3]:process_field: Can't migrate field 'field_event' with 'todate' settings. Enable the datetime_range module. See https://www.drupal.org/docs/8/upgrade/known-issues-when-upgrading-from-drupal-6-or-7-to-drupal-8#datetime"

    Would be much better. It's not the third call to a process_field plugin, it's the third process plugin called for the type destination property.

    But to do it you would have to add another property to migrate exception, and bubble the value up, set it in the right places, deal with the times a migrate exception is thrown when an index makes no sense, ect.

Production build 0.71.5 2024