Author: tolusha
Date: 2010-04-13 05:34:56 -0400 (Tue, 13 Apr 2010)
New Revision: 2275
Modified:
jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/util/jdbc/DBInitializer.java
Log:
EXOJCR-662: avoid infinite loop
Modified:
jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/util/jdbc/DBInitializer.java
===================================================================
---
jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/util/jdbc/DBInitializer.java 2010-04-13
09:33:55 UTC (rev 2274)
+++
jcr/trunk/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/util/jdbc/DBInitializer.java 2010-04-13
09:34:56 UTC (rev 2275)
@@ -366,7 +366,7 @@
while (next != null)
{
errorTrace += next.getMessage() + "; ";
- next = e.getNextException();
+ next = next.getNextException();
}
Throwable cause = e.getCause();
String msg =
Show replies by date