Redirect response when executing migrate-rollback on console or mass deletion with views bulk operation

Created on 9 March 2018, about 7 years ago
Updated 26 April 2023, almost 2 years ago

Problem

When attempting to roll back a migration of Drupal 8 migrate, you get a HTTP redirect response:

$ drush migrate-rollback my_example

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8" />
        <meta http-equiv="refresh" content="0;url=/public-node-url" />

        <title>Redirecting to /public-node-url</title>
    </head>
    <body>
        Redirecting to <a href="/public-node-url">/public-node-url</a>.
    </body>
</html>
Drush command terminated abnormally due to an unrecoverable error.          [error]

Migrate does not rollback the migration. There is no indication of an error or the cause anywhere to be found.

Cause

  1. Content Lock triggers HTTP redirect responses even when not in a webserver environment, but in a command line process.

  2. When attempting to run drush migrate-rollback or drupal migrate:rollback on the command line to roll back a migration, content_lock triggers a HTTP redirect response (still on the command line):

    $ drush migrate-reset-status my_example && drush migrate-rollback my_example --verbose --debug
    ...
    ...
    Calling hook drush_migrate_tools_migrate_rollback [0.39 sec, 19.29 MB]               [debug]
    Calling Drupal\migrate_tools\MigrateExecutable::rollback() [0.4 sec, 19.88 MB]               [debug]
    
    #0  Symfony\Component\HttpFoundation\RedirectResponse->setTargetUrl() called at [/docroot/core/lib/Drupal/Component/HttpFoundation/SecuredRedirectResponse.php:58]
    #1  Drupal\Component\HttpFoundation\SecuredRedirectResponse->setTargetUrl() called at [/vendor/symfony/http-foundation/RedirectResponse.php:39]
    #2  Symfony\Component\HttpFoundation\RedirectResponse->__construct() called at [/docroot/modules/contrib/content_lock/content_lock.module:180]
    #3  content_lock_entity_predelete()
    ...
    
    Drush command terminated abnormally due to an unrecoverable error. [0.52 sec, 24.39 MB]         [error]
    

Proposed resolution

  1. Fundamentally, don't ever redirect on PHP_SAPI === 'cli', throw an appropriate exception instead.

  2. Ignore any content locks when a migration is rolled back, as this is not a random operation performed by an arbitrary other user in the system, but an administrative site maintenance operation.

Remaining tasks

User interface changes

API changes

Data model changes

πŸ› Bug report
Status

RTBC

Version

2.0

Component

Code

Created by

πŸ‡©πŸ‡ͺGermany sun Karlsruhe

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

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024