From 1c6a11cf92afb0326a85d988a148e6c6d675ae8e Mon Sep 17 00:00:00 2001 From: Simon Redfern Date: Wed, 8 Nov 2023 12:38:57 +0100 Subject: [PATCH] docfix: fixing comment about autoCommit --- obp-api/src/main/scala/bootstrap/liftweb/CustomDBVendor.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obp-api/src/main/scala/bootstrap/liftweb/CustomDBVendor.scala b/obp-api/src/main/scala/bootstrap/liftweb/CustomDBVendor.scala index cf39b0dfd1..46f57031cc 100644 --- a/obp-api/src/main/scala/bootstrap/liftweb/CustomDBVendor.scala +++ b/obp-api/src/main/scala/bootstrap/liftweb/CustomDBVendor.scala @@ -49,7 +49,7 @@ class CustomDBVendor(driverName: String, if(maxLifetime.isDefined){ config.setMaxLifetime(maxLifetime.head) } - //Liftweb DB.scala will set all the new connections to false, so here we set default to false - Hmm, check this comment! + //Liftweb DB.scala will set all the new connections to false, so here we set default to false val autoCommitValue: Boolean = false config.setAutoCommit(autoCommitValue) logger.info(s"We set HikariDatasource config.setAutoCommit=$autoCommitValue")