in src/main/java/com/epam/dep/esp/common/web/Web.java [236:245]
public void close() {
logger.info("Closing Web Client...");
if (httpClient != null) {
try {
httpClient.close();
} catch (IOException ex) {
logger.error("Unable to shutdown httClient ", ex);
}
}
}