Skip to content
Snippets Groups Projects
Commit 2606ca62 authored by jurgenhaas's avatar jurgenhaas
Browse files

Merge branch 'develop' into 'main'

Merging develop into main

See merge request !28
parents ca12f7ea 62c503f9
No related branches found
No related tags found
1 merge request!28Merging develop into main
Pipeline #542711 passed
......@@ -43,8 +43,9 @@
"composer/composer": "^1||^2",
"drupal/coder": "^8.3",
"lakedrops/drupal-environment": "^3.0",
"phpunit/phpunit": "^8.4",
"roave/security-advisories": "dev-latest"
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
......
......@@ -64,6 +64,7 @@ class Handler extends BaseHandler {
'cert' => $this->env->receive('traefik_cert', '', 'fullchain.pem'),
'key' => $this->env->receive('traefik_key', '', 'privkey.pem'),
'portainer' => $this->env->receive('traefik_portainer', '', '0'),
'hub_token' => $this->env->receive('traefik_hub_token', '', ''),
],
'live' => [
'root' => '',
......@@ -446,6 +447,9 @@ class Handler extends BaseHandler {
if ($this->config->readValue(['traefik', 'portainer'])) {
$traefik->setAddonPortainer(TRUE);
}
if ($hub_token = $this->config->readValue(['traefik', 'hub_token'])) {
$traefik->setHubToken($hub_token);
}
$traefik->update();
}
......
......@@ -26,7 +26,7 @@ $databases = array(
'port' => '3306',
'prefix' => '',
'init_commands' => [
'tx_level' => "SET TRANSACTION ISOLATION LEVEL READ COMMITTED;",
'isolation_level' => 'SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED',
],
),
),
......@@ -50,7 +50,7 @@ $databases = array(
'database' => 'drupal',
'prefix' => '',
'init_commands' => [
'tx_level' => "SET TRANSACTION ISOLATION LEVEL READ COMMITTED;",
'isolation_level' => 'SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED',
],
),
),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment