src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Http1Exchange.java
branchhttp-client-branch
changeset 55799 c71f52f48d97
parent 55795 074bb951658a
child 55800 c4307c12419d
--- a/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Http1Exchange.java	Fri Nov 10 12:36:44 2017 +0000
+++ b/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/Http1Exchange.java	Fri Nov 10 16:24:07 2017 +0300
@@ -170,7 +170,7 @@
             InetSocketAddress addr = request.getAddress(client);
             this.connection = HttpConnection.getConnection(addr, client, request, HTTP_1_1);
         }
-        this.requestAction = new Http1Request(request, client, this);
+        this.requestAction = new Http1Request(request, this);
         this.asyncReceiver = new Http1AsyncReceiver(executor, this);
         asyncReceiver.subscribe(new InitialErrorReceiver());
     }