essobedo commented on code in PR #8549:
URL: https://github.com/apache/camel/pull/8549#discussion_r998921526
##########
components/camel-jpa/src/test/java/org/apache/camel/component/jpa/JpaComponentTest.java:
##########
@@ -44,6 +44,7 @@ public void testJpaComponentConsumerHasLockModeType() throws
Exception {
JpaConsumer consumer = (JpaConsumer) jpa.createConsumer(null);
assertEquals(LockModeType.PESSIMISTIC_WRITE,
consumer.getLockModeType());
+ comp.close();
Review Comment:
No because the try-with-resources statement has been created for this
purpose. Read this
https://docs.oracle.com/javase/tutorial/essential/exceptions/tryResourceClose.html
for more details.
--
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]