675676677678679680681682683684685
} catch (Throwable e) { String msg = "Unexpected error while preparing log entry."; throw new ClusterException(msg, e); } finally { if (!succeeded) { record.cancelUpdate(); update.setAttribute(ATTRIBUTE_RECORD, null); } } }
726727728729730731732733734735736
* {@inheritDoc} */ public void updateCancelled(Update update) { Record record = (Record) update.getAttribute(ATTRIBUTE_RECORD); if (record != null) { record.cancelUpdate(); update.setAttribute(ATTRIBUTE_RECORD, null); } } /**
} catch (Throwable e) { String msg = "Unexpected error while preparing log entry."; log.error(msg, e); } finally { if (!succeeded && record != null) { record.cancelUpdate(); update.setAttribute(ATTRIBUTE_RECORD, null); } } }
633634635636637638639640641642643
log.info("not started: update cancel ignored."); return; } Record record = (Record) update.getAttribute(ATTRIBUTE_RECORD); if (record != null) { record.cancelUpdate(); update.setAttribute(ATTRIBUTE_RECORD, null); } } /**
398399400401402403404405406407408
} catch (Throwable e) { String msg = "Unexpected error while creating log entry."; log.error(msg, e); } finally { if (!succeeded && record != null) { record.cancelUpdate(); } } } public void setListener(NamespaceEventListener listener) {
436437438439440441442443444445446
} catch (Throwable e) { String msg = "Unexpected error while creating log entry."; log.error(msg, e); } finally { if (!succeeded && record != null) { record.cancelUpdate(); } } } /**
468469470471472473474475476477478
500501502503504505506507508509510
1268126912701271127212731274127512761277
} catch (Throwable e) { String msg = "Unexpected error while creating log entry."; log.error(msg, e); } finally { if (!succeeded) { record.cancelUpdate(); } } } }