}
// Match! Let's try to get an actual action from that pool
Action action = null;
try {
action = (Action) pool.borrowObject();
} catch (Throwable t) {
logger.error("Error getting action from action pool", t);
DispatchUtils.sendInternalError(request, response);
return true;
}