Problem/Motivation
i can use "drush cim" to the infinite, as you can seen on the code below, i use "drush cim --diff" and we can see these differences :
diff --git a/tmp/drush_tmp/simple_sitemap.settings.yml b/tmp/drush_tmp/simple_sitemap.settings.yml
index f056699..8590bf7 100644
--- a/tmp/drush_tmp/simple_sitemap.settings.yml
+++ b/tmp/drush_tmp/simple_sitemap.settings.yml
@@ -1,6 +1,3 @@
-_core:
- default_config_hash: LWI5gcV7qtIl5h1xg7AWMtepAzBAvTaw_TOmsQbw9Tk
-langcode: fr
max_links: 2000
cron_generate: true
cron_generate_interval: 24
@@ -11,7 +8,10 @@ xsl: false
default_variant: default
custom_links_include_images: false
-disable_language_hreflang: false
excluded_languages: { }
enabled_entity_types:
- node
+_core:
+ default_config_hash: LWI5gcV7qtIl5h1xg7AWMtepAzBAvTaw_TOmsQbw9Tk
+langcode: fr
+disable_language_hreflang: false
In reality, there is no change, he remove some values and replace them by the exactly same value, but not in the same place, ok, i choose yes :
[notice] Synchronisation de la configuration : update simple_sitemap.settings.
[notice] Finalisation de la synchronisation de la configuration.
[success] The configuration was imported successfully.
and drush cim --diff again
diff --git a/tmp/drush_tmp/simple_sitemap.settings.yml b/tmp/drush_tmp/simple_sitemap.settings.yml
index f056699..8590bf7 100644
--- a/tmp/drush_tmp/simple_sitemap.settings.yml
+++ b/tmp/drush_tmp/simple_sitemap.settings.yml
@@ -1,6 +1,3 @@
-_core:
- default_config_hash: LWI5gcV7qtIl5h1xg7AWMtepAzBAvTaw_TOmsQbw9Tk
-langcode: fr
max_links: 2000
cron_generate: true
cron_generate_interval: 24
@@ -11,7 +8,10 @@ xsl: false
default_variant: default
custom_links_include_images: false
-disable_language_hreflang: false
excluded_languages: { }
enabled_entity_types:
- node
+_core:
+ default_config_hash: LWI5gcV7qtIl5h1xg7AWMtepAzBAvTaw_TOmsQbw9Tk
+langcode: fr
+disable_language_hreflang: false
do you know why this is happening?
thank you.