rundata.getRequest().setAttribute(actionKey, "executed");
try {
moduleLoaderService.getModule(ACTION_MODULE, action).execute();
} catch (ModuleLoaderException e) {
throw new PipelineException("Could not load action module: " + action, e);
} catch (Exception e) {
throw new PipelineException("Failed to execute action module", e);
}
}
}
}