Skip to content

Commit

Permalink
0001156: Fatal Error (like OOM) could possibly cause a reload event t…
Browse files Browse the repository at this point in the history
…o be stranded in sym_data and routed to all child nodes
  • Loading branch information
chenson42 committed Apr 2, 2013
1 parent f820367 commit d54e389
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -412,9 +412,12 @@ public void insertReloadEvents(Node targetNode, boolean reverse) {
engine.getStatisticManager().incrementNodesLoaded(1);

transaction.commit();
} catch (RuntimeException ex) {
} catch (Error ex) {
transaction.rollback();
throw ex;
} catch (RuntimeException ex) {
transaction.rollback();
throw ex;
} finally {
close(transaction);
}
Expand Down

0 comments on commit d54e389

Please sign in to comment.