This commit is contained in:
Fernando A Castro 2024-07-24 12:33:52 +02:00 committed by GitHub
commit e059119484
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View file

@ -22,6 +22,7 @@ drupal_settings:
database: mydatabase
username: user
password: secret
isolevel: 'SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED'
config_directories: # Optional, Drupal 8
sync: path/to/config
trusted_hosts: # Optional, Drupal 8

View file

@ -11,6 +11,9 @@ $databases['{{ key }}']['{{ target }}'] = array(
'database' => '{{ values.database }}',
'username' => '{{ values.username }}',
'password' => '{{ values.password }}',
'init_commands' => [
'isolation_level' => '{{ values.isolevel }}',
],
);
{% endfor %}