in src/main/java/com/spotify/ffwd/http/HttpClient.java [67:79]
public void shutdown() {
RuntimeException e = null;
try {
clientFactory.shutdown();
} catch (final RuntimeException inner) {
e = inner;
}
if (e != null) {
throw e;
}
}