This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push: new efd862d3e3 Use more correct convention with configuring datasource efd862d3e3 is described below commit efd862d3e394ed53fa4d0c932fecf93ce03b330c Author: Lukas Lowinger <llowi...@redhat.com> AuthorDate: Tue May 13 10:39:43 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