JiriOndrusek commented on code in PR #26074:
URL: https://github.com/apache/camel/pull/26074#discussion_r3923755435
##########
components/camel-jpa/src/test/resources/profiles/hibernate/META-INF/persistence.xml:
##########
@@ -79,6 +82,18 @@
</properties>
</persistence-unit>
+ <persistence-unit name="keyvalueDb" transaction-type="RESOURCE_LOCAL">
+ <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
+
+ <class>org.apache.camel.processor.keyvalue.jpa.KeyValueEntry</class>
+
+ <properties>
+ <property name="jakarta.persistence.jdbc.driver" value="org.h2.Driver"/>
+ <property name="jakarta.persistence.jdbc.url"
value="jdbc:h2:./target/keyvalueTest;DB_CLOSE_DELAY=-1"/>
Review Comment:
Fixed in a12a6b0 — the `keyvalueDb` unit now uses the same
`hibernate.dialect` / `hibernate.connection.*` style as the other units (and
matches the new `KeyValueEntryHibernateMappingTest` as well). Full
`-Dhibernate` suite re-verified green (119 tests).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]