HoustonPutman commented on a change in pull request #1480: URL: https://github.com/apache/lucene-solr/pull/1480#discussion_r421146348
########## File path: solr/solrj/src/java/org/apache/solr/client/solrj/impl/HttpSolrClient.java ########## @@ -568,12 +568,18 @@ private HttpEntityEnclosingRequestBase fillContentStream(SolrRequest request, Co // Read the contents entity = response.getEntity(); respBody = entity.getContent(); - Header ctHeader = response.getLastHeader("content-type"); - String contentType; - if (ctHeader != null) { - contentType = ctHeader.getValue(); - } else { - contentType = ""; + String mimeType = null; + Charset charset = null; + String charsetName = null; + + ContentType contentType = ContentType.get(entity); + if (contentType != null) { + mimeType = contentType.getMimeType().trim().toLowerCase(Locale.ROOT); + charset = contentType.getCharset(); + + if (charset != null) { + charsetName = charset.name(); + } } Review comment: That's completely fair. We don't want to dictate the default for each response parser. If you fixed that logging line, I think that's enough. It'd be nice to have UTF8 instead of `null` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org