drush config:import and drush config:status always report the configuration is different when ignoring specific keys (config sorting)

Created on 8 February 2023, about 2 years ago
Updated 14 April 2024, 12 months ago

Problem/Motivation

When running drush config:import and drush config:status when specific keys are ignored in the configuration (not entire config objects) the output of the 2 commands always report that the config is different. As such they cannot be relied on to check for valid differences in the configuration, especially if config:status is being used in a CI/CD context that needs to check that the configuration was imported successfully and no differences exist

Steps to reproduce

  • Create a Drupal site using the standard profile and install config_ignore.
  • Configure config_ignore so the key media.type.image:uuid is ignored.
  • Export the configuration with drush config:export
  • Run config:export again to confirm there's nothing to export
  • Check the media.type.image.yml file in the exported config directory to confirm the uuid key is not present
  • Run drush config:import or drush config:status
  • Either command should show you there are differences between the active configuration and the configuration in the files
  • Execute the config:import and run config:status again. It should show you the same differences pending even though you just imported the configuration.

Proposed resolution

Since the ignored config key is always missing from the exported config, Drupal will always report the config as being different. Should the key be exported regardless just with a string in place instead? Something like "CONFIGURATION KEY IGNORED"? That way any time the active and the config in files are being compared, the keys are always present and Drupal doesn't report any differences?

Remaining tasks

Decide what the best approach would be to handle this.
Execute the decided approach.

User interface changes

None

API changes

None (I think)

Data model changes

The ignored key will always be present in the exported config files.

🐛 Bug report
Status

Active

Version

3.0

Component

Code

Created by

🇨🇦Canada pavlosdan

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

Comments & Activities

  • Issue created by @pavlosdan
  • 🇮🇳India vipin.mittal18 Greater Noida

    This is an issue with the beta version as running perfectly with 2.4 previous version

    Refer behaviour

    on 2.4

    on beta version

  • 🇺🇸United States j.cowher

    I am seeing the same issue in my project when ignoring the description key on fields. This is causing our builds to fail because we have a step that checks that configuration was imported correctly.

    When running drush cim --no --diff I see something like the following:

    diff --git a/tmp/drush_tmp_1679421962_6419f20a98484/field.field.node.article.space_term.yml b/tmp/drush_tmp_1679421964_6419f20c4a00d/field.field.node.article.space_term.yml
    index a7e6af484..792564d13 100644
    --- a/tmp/drush_tmp_1679421962_6419f20a98484/field.field.node.article.space_term.yml
    +++ b/tmp/drush_tmp_1679421964_6419f20c4a00d/field.field.node.article.space_term.yml
    @@ -10,7 +10,6 @@ field_name: space_term
     entity_type: node
     bundle: article
     label: 'Space'
    -description: 'Space'
     required: false
     translatable: false
     default_value: {  }
    @@ -19,3 +18,4 @@ settings:
       handler: 'default:taxonomy_term'
       handler_settings: {  }
     field_type: entity_reference
    +description: 'Space'
    
  • 🇨🇭Switzerland bircher 🇨🇿

    This is interesting!
    This happens because the config compared is not properly sorted. I encountered this issue with config split too. I think this is something that core should fix. I will have to find core issues and link things together.
    Unfortunately sorting things may or may not be so easy because of the missing orderby information on sequences.
    But the example here would benefit from sorting of the mappings.

    We can do a simple order the way it is when ignoring keys I think.

  • 🇮🇳India sanket.addweb

    I tried to reproduce this issue by changing the UUID of media.type.image and then running drush cim. I observed that one configuration was deleted and another was created.
    Next, I added media.type.image:uuid to the ignore list and ran drush cim again. It showed me that there were no changes to import.

    @bircher, please let me know if I missed anything while reproducing the issue. However, I believe this issue may not exist in the latest version, 8.x-3.x-dev.

  • 🇨🇭Switzerland bircher 🇨🇿

    No I think it can still happen. The problem is that the config needs to be sorted and this is currently an unsolved core issue. So I would keep this issue open so that people find it and don't open a new one.

Production build 0.71.5 2024