Skip to content

Commit

Permalink
HSEARCH-4100 Include the host when formatting responses in exception …
Browse files Browse the repository at this point in the history
…messages

Now that we have it, we may as well include it.

Signed-off-by: Yoann Rodière <yoann@hibernate.org>
  • Loading branch information
yrodiere authored and fax4ever committed Nov 9, 2020
1 parent 4c81afe commit b9847dd
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -40,6 +40,8 @@ private static String formatResponse(ElasticsearchResponse response) {
sb.append( response.statusCode() )
.append( " '" )
.append( response.statusMessage() )
.append( "' from '" )
.append( response.host() )
.append( "' with body " )
.append( helper.toString( response.body() ) );

Expand Down

0 comments on commit b9847dd

Please sign in to comment.