This is an automated email from the git hooks/post-receive script. New commit to branch feature/spgeed in repository pollen. See https://gitlab.nuiton.org/chorem/pollen.git commit 2c3b7b25a3cd076d830800eb6c67f406206c091e Author: Killian <killian.herbreteau@epitech.eu> Date: Fri Oct 25 12:00:06 2019 +0200 passing topia from H2 to PostgreSQL --- pollen-rest-api/src/main/resources/pollen-rest-api.properties | 10 +++++----- .../src/test/resources/pollen-rest-api-test.properties | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pollen-rest-api/src/main/resources/pollen-rest-api.properties b/pollen-rest-api/src/main/resources/pollen-rest-api.properties index b0c56279..c2f1ed41 100644 --- a/pollen-rest-api/src/main/resources/pollen-rest-api.properties +++ b/pollen-rest-api/src/main/resources/pollen-rest-api.properties @@ -18,11 +18,11 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% ### -hibernate.dialect=org.hibernate.dialect.H2Dialect -hibernate.connection.url=jdbc:h2:file:${pollen.data.directory}/db/pollen-rest-api -hibernate.connection.username=sa -hibernate.connection.password=sa -hibernate.connection.driver_class=org.h2.Driver +hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect +hibernate.connection.url=jdbc:postgresql://localhost:5432/pollenprod?allowMultiQueries=true +hibernate.connection.username=pollen +hibernate.connection.password=pollen +hibernate.connection.driver_class=org.postgresql.Driver #hibernate.hbm2ddl.auto=update pollen.version=${project.version} pollen.buildDate=${maven.build.timestamp} diff --git a/pollen-rest-api/src/test/resources/pollen-rest-api-test.properties b/pollen-rest-api/src/test/resources/pollen-rest-api-test.properties index e759ab41..d03610db 100644 --- a/pollen-rest-api/src/test/resources/pollen-rest-api-test.properties +++ b/pollen-rest-api/src/test/resources/pollen-rest-api-test.properties @@ -19,11 +19,11 @@ # #L% ### -hibernate.dialect=org.hibernate.dialect.H2Dialect -hibernate.connection.url=jdbc:h2:file:${pollen.data.directory}/db/pollen-rest-api -hibernate.connection.username=sa -hibernate.connection.password=sa -hibernate.connection.driver_class=org.h2.Driver +hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect +hibernate.connection.url=jdbc:postgresql://localhost:5432/pollenprod?allowMultiQueries=true +hibernate.connection.username=pollen +hibernate.connection.password=pollen +hibernate.connection.driver_class=org.postgresql.Driver #hibernate.hbm2ddl.auto=update pollen.version=${project.version} topia.persistence.topiaIdFactoryClassName=org.nuiton.topia.persistence.internal.ShortTopiaIdFactory -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.