We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 181684b commit a27c53fCopy full SHA for a27c53f
core/src/test/java/org/elasticsearch/test/rest/client/http/HttpRequestBuilder.java
@@ -168,6 +168,7 @@ public HttpResponse execute() throws IOException {
168
logger.trace("sending request \n{}", stringBuilder.toString());
169
}
170
for (Map.Entry<String, String> entry : this.headers.entrySet()) {
171
+ logger.trace("adding header [{} => {}]", entry.getKey(), entry.getValue());
172
httpUriRequest.addHeader(entry.getKey(), entry.getValue());
173
174
try (CloseableHttpResponse closeableHttpResponse = httpClient.execute(httpUriRequest)) {
0 commit comments