List<CoordinatorActionBean> cactions = store.getRunningActionsOlderThan(actionCheckDelay, false);
msg.append(" COORD_ACTIONS : " + cactions.size());
for (CoordinatorActionBean caction : cactions) {
Services.get().get(InstrumentationService.class).get().incr(INSTRUMENTATION_GROUP,
INSTR_CHECK_COORD_ACTIONS_COUNTER, 1);
queueCallable(new CoordActionCheckCommand(caction.getId(), actionCheckDelay));
}
store.commitTrx();
}
catch (StoreException ex) {
if (store != null) {