Skip to content

Commit 02e96ff

Browse files
committed
Fix line length after adding final
1 parent 389bd6f commit 02e96ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/rest/src/main/java/org/elasticsearch/client/RestClient.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,8 @@ private void performRequestAsync(final long startTime, final HostTuple<Iterator<
332332
final HttpHost host = hostTuple.hosts.next();
333333
//we stream the request body if the entity allows for it
334334
final HttpAsyncRequestProducer requestProducer = HttpAsyncMethods.create(host, request);
335-
final HttpAsyncResponseConsumer<HttpResponse> asyncResponseConsumer = httpAsyncResponseConsumerFactory.createHttpAsyncResponseConsumer();
335+
final HttpAsyncResponseConsumer<HttpResponse> asyncResponseConsumer =
336+
httpAsyncResponseConsumerFactory.createHttpAsyncResponseConsumer();
336337
final HttpClientContext context = HttpClientContext.create();
337338
context.setAuthCache(hostTuple.authCache);
338339
client.execute(requestProducer, asyncResponseConsumer, context, new FutureCallback<HttpResponse>() {

0 commit comments

Comments
 (0)