From cbbe5d09d5809b0da3d249a159ac0059e17cba4d Mon Sep 17 00:00:00 2001 From: Niclas Thobaben Date: Tue, 15 Feb 2022 18:16:56 +0100 Subject: [PATCH] Trying out MySQLDialect instead of MariaDBDialect --- src/main/resources/application-swarm.properties | 2 +- src/main/resources/application.properties | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/resources/application-swarm.properties b/src/main/resources/application-swarm.properties index 7551919..13a7dd5 100644 --- a/src/main/resources/application-swarm.properties +++ b/src/main/resources/application-swarm.properties @@ -1,4 +1,4 @@ spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver -spring.jpa.properties.hibernate.dialect: org.hibernate.dialect.MariaDBDialect +spring.jpa.properties.hibernate.dialect: org.hibernate.dialect.MySQLDialect spring.datasource.url=jdbc:mysql://sql01.nclazz.de/prod_nclazz_mail_relay server.forward-headers-strategy=native \ No newline at end of file diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index f43b2ef..569d9e5 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -6,6 +6,7 @@ management.endpoints.enabled-by-default=false management.endpoints.web.exposure.include=info,health management.endpoint.info.enabled=true management.endpoint.health.enabled=true +management.info.git.enabled=true spring.mail.username=${MAIL_USERNAME} spring.mail.password=${MAIL_PASSWORD}