httpResponse.addHeader(HELIOS_VERSION_STATUS_HEADER, MISSING.toString());
chain.doFilter(request, response);
return;
}
final PomVersion clientVersion;
try {
clientVersion = PomVersion.parse(header);
} catch (RuntimeException e) {
log.debug("failure to parse version header " + header);
httpResponse.addHeader(HELIOS_VERSION_STATUS_HEADER, INVALID.toString());