This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch 3.20.x
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/3.20.x by this push:
     new 81d7dc20ff Use more correct convention with configuring datasource
81d7dc20ff is described below

commit 81d7dc20ff4851e03eb39d0efff84688355b2f13
Author: Lukas Lowinger <llowi...@redhat.com>
AuthorDate: Tue May 13 15:45:17 2025 +0200

    Use more correct convention with configuring datasource
---
 .../jpa/src/main/resources/application.properties              | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/integration-tests/jpa/src/main/resources/application.properties 
b/integration-tests/jpa/src/main/resources/application.properties
index df88312f05..699598208b 100644
--- a/integration-tests/jpa/src/main/resources/application.properties
+++ b/integration-tests/jpa/src/main/resources/application.properties
@@ -16,9 +16,9 @@
 ## ---------------------------------------------------------------------------
 quarkus.datasource.db-kind=${cq.sqlJdbcKind:h2}
 
-quarkus.datasource."test".db-kind=${cq.sqlJdbcKind:h2}
-quarkus.datasource."test".jdbc.max-size=8
+quarkus.datasource.test.db-kind=${cq.sqlJdbcKind:h2}
+quarkus.datasource.test.jdbc.max-size=8
 
-quarkus.hibernate-orm."test".packages=org.apache.camel.quarkus.component.jpa.it.model,org.apache.camel.processor.idempotent.jpa
-quarkus.hibernate-orm."test".datasource=test
-quarkus.hibernate-orm."test".database.generation=drop-and-create
+quarkus.hibernate-orm.test.packages=org.apache.camel.quarkus.component.jpa.it.model,org.apache.camel.processor.idempotent.jpa
+quarkus.hibernate-orm.test.datasource=test
+quarkus.hibernate-orm.test.database.generation=drop-and-create

Reply via email to