HHH-5590 : Don't log and rethrow exception in AbstractFlushingEventListener

This commit is contained in:
Gail Badner 2011-03-09 12:14:19 -08:00
parent 329486bc69
commit 4b130da83e
1 changed files with 0 additions and 4 deletions

View File

@ -318,10 +318,6 @@ public abstract class AbstractFlushingEventListener implements Serializable {
session.getActionQueue().prepareActions();
session.getActionQueue().executeActions();
}
catch (HibernateException he) {
LOG.unableToSynchronizeDatabaseStateWithSession(he);
throw he;
}
finally {
session.getTransactionCoordinator().getJdbcCoordinator().flushEnding();
}