diff options
author | Jorge Hernandez <jh1730@att.com> | 2018-05-06 23:03:13 -0500 |
---|---|---|
committer | Jorge Hernandez <jh1730@att.com> | 2018-05-06 23:03:13 -0500 |
commit | c9116710c277a18515dc88cac36ba4bafcf17ead (patch) | |
tree | 3ec62adbdf98c4dd2174b0e02e0b3eb5db0323db /docker-compose-integration.yml | |
parent | 598dbee6123d273251045d5df2c0af7070841b8a (diff) |
upgrade mariadb version
this was an exercise to see if it helps with
the pessimistic lock exceptions on PE side.
The problem still persists, in any case,
the database was outdated, and better to
run with a more up to date one.
Change-Id: I8e51617fde6c1ac9870d1680ebe81e039a333489
Issue-ID: POLICY-777
Signed-off-by: Jorge Hernandez <jh1730@att.com>
Diffstat (limited to 'docker-compose-integration.yml')
-rw-r--r-- | docker-compose-integration.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker-compose-integration.yml b/docker-compose-integration.yml index 53b592a3..e67729e2 100644 --- a/docker-compose-integration.yml +++ b/docker-compose-integration.yml @@ -14,10 +14,10 @@ version: '2' services: mariadb: - image: mariadb:10.0.34 + image: mariadb:10.2.14 container_name: mariadb hostname: mariadb - command: ['--lower-case-table-names=1'] + command: ['--lower-case-table-names=1', '--wait_timeout=28800'] env_file: config/db/db.conf volumes: - ./config/db:/docker-entrypoint-initdb.d |