You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jg...@apache.org on 2015/07/21 20:36:28 UTC

[11/16] tomee git commit: too slow flush from idea, sorry for the noise

too slow flush from idea, sorry for the noise


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/a8969793
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/a8969793
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/a8969793

Branch: refs/heads/tomee-1.7.x
Commit: a89697937dc7216cb8a638dd24c8d72b83971567
Parents: c390227
Author: Romain Manni-Bucau <rm...@apache.org>
Authored: Thu Jul 16 13:55:14 2015 +0200
Committer: Jonathan Gallimore <jo...@jrg.me.uk>
Committed: Tue Jul 21 13:42:31 2015 +0100

----------------------------------------------------------------------
 .../openejb/resource/jdbc/managed/local/ManagedConnection.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/a8969793/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/managed/local/ManagedConnection.java
----------------------------------------------------------------------
diff --git a/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/managed/local/ManagedConnection.java b/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/managed/local/ManagedConnection.java
index 02bb552..68c3cff 100644
--- a/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/managed/local/ManagedConnection.java
+++ b/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/managed/local/ManagedConnection.java
@@ -133,7 +133,7 @@ public class ManagedConnection implements InvocationHandler {
                         setAutoCommit(false);
                     } catch (final SQLException xae) { // we are alreay in a transaction so this can't be called from a user perspective - some XA DataSource prevents it in their code
                         final String message = "Can't set auto commit to false cause the XA datasource doesn't support it, this is likely an issue";
-                        final Logger logger = Logger.getInstance(LogCategory.OPENEJB_RESOURCE_JDBC, ManagedConnection.class)
+                        final Logger logger = Logger.getInstance(LogCategory.OPENEJB_RESOURCE_JDBC, ManagedConnection.class);
                         if (logger.isDebugEnabled()) { // we don't want to print the exception by default
                             logger.warning(message, xae);
                         } else {