From: <ssk...@vh...> - 2006-02-24 14:23:27
|
Author: sskracic Date: 2006-02-24 15:17:45 +0100 (Fri, 24 Feb 2006) New Revision: 1095 Modified: trunk/ccm-ldn-theme/application.xml trunk/ccm-ldn-theme/src/com/arsdigita/london/theme/util/ThemeFileManager.java Log: A workaround to the problem where some JDBC drivers are throwing an Error where an Excetion should actually have been thrown. Background thread must not die, it must re-try over and over again. Modified: trunk/ccm-ldn-theme/application.xml =================================================================== --- trunk/ccm-ldn-theme/application.xml 2006-02-24 08:52:48 UTC (rev 1094) +++ trunk/ccm-ldn-theme/application.xml 2006-02-24 14:17:45 UTC (rev 1095) @@ -3,7 +3,7 @@ name="ccm-ldn-theme" prettyName="Theme" version="6.3.1" - release="1"> + release="2"> <ccm:dependencies> <ccm:requires name="ccm-core" version="6.2.0" relation="ge"/> <ccm:requires name="ccm-ldn-subsite" version="6.2.0" relation="ge"/> Modified: trunk/ccm-ldn-theme/src/com/arsdigita/london/theme/util/ThemeFileManager.java =================================================================== --- trunk/ccm-ldn-theme/src/com/arsdigita/london/theme/util/ThemeFileManager.java 2006-02-24 08:52:48 UTC (rev 1094) +++ trunk/ccm-ldn-theme/src/com/arsdigita/london/theme/util/ThemeFileManager.java 2006-02-24 14:17:45 UTC (rev 1095) @@ -143,7 +143,7 @@ } m_lastRunDate = lastRunDate; - } catch (Exception e) { + } catch (Throwable e) { m_log.warn("Ignoring uncaught exception", e); } finally { if ( txn.inTxn() ) { |