- Issue created by @dave reid
- πͺπΈSpain penyaskito Seville π, Spain πͺπΈ, UTC+2 πͺπΊ
This is the change record where this happened: https://www.drupal.org/node/3230199 β
Automatically closed - issue fixed for 2 weeks with no activity.
If you take the config/install/sendgrid.settings.yml file and copy it to your config/sync directory, it will always show as needing to import like this:
drush config:import --diff
diff --git a/tmp/drush_tmp_1732644399_67460e2fd0b3c/sendgrid.settings.yml b/tmp/drush_tmp_1732644400_67460e30d91b8/sendgrid.settings.yml
index c8818b36..909c805d 100644
--- a/tmp/drush_tmp_1732644399_67460e2fd0b3c/sendgrid.settings.yml
+++ b/tmp/drush_tmp_1732644400_67460e30d91b8/sendgrid.settings.yml
@@ -1,7 +1,7 @@
_core:
default_config_hash: ...
api_key: ''
-debug_mode: false
ip_pool_name: ''
+debug_mode: false
format_filter: ''
use_theme: false
Because when you save the module settings page, you get the config saved in this order (with debug_mode before ip_pool_name):
sendgrid.settings:
type: config_object
label: 'Sendgrid settings'
mapping:
api_key:
type: string
debug_mode:
type: boolean
ip_pool_name:
type: string
format_filter:
type: string
use_theme:
type: boolean
https://git.drupalcode.org/project/sendgrid/-/blob/1.0.x/config/schema/s...
drush config:import
drush config:status
that shows that the sendgrid.settings config is still not the same.Fix the default config to use the correct order in sync with the schema file.
Active
1.0
Code
This is the change record where this happened: https://www.drupal.org/node/3230199 β
Automatically closed - issue fixed for 2 weeks with no activity.