lastException = e;
LOG.info("Retriable exception from end point id: " + endPoint.getId(), e);
}
} while (retry.allowRetry(++numAttempts, sw.elapsed(TimeUnit.MILLISECONDS)));
throw new MaxRetriesException(lastException);
} finally {
timer.stop();
}
}
});