in src/main/java/com/spotify/ffwd/http/HttpClient.java [92:98]
public static ObjectMapper setupApplicationJson() {
final ObjectMapper mapper = new ObjectMapper();
mapper.registerModule(new Jdk8Module());
mapper.enable(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES);
mapper.enable(DeserializationFeature.FAIL_ON_MISSING_CREATOR_PROPERTIES);
return mapper;
}