// Successfully collected data from this server... hence no more backing off.
backoffcounter.resetFailCount(server);
}
} catch (Exception e) {
backoffcounter.incrementFailCount(server);
if (log.isErrorEnabled()) {
log.error("Error occurred while polling data from server " + server.getServerURL(), e);
}
}
}