Merged branch 'jetty-11.0.x' into 'jetty-12.0.x'.
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
commit
e8dd649520
|
@ -40,7 +40,6 @@ public class HttpSenderOverHTTP extends HttpSender
|
|||
private final IteratingCallback headersCallback = new HeadersCallback();
|
||||
private final IteratingCallback contentCallback = new ContentCallback();
|
||||
private final HttpGenerator generator = new HttpGenerator();
|
||||
private HttpExchange exchange;
|
||||
private MetaData.Request metaData;
|
||||
private ByteBuffer contentByteBuffer;
|
||||
private boolean lastContent;
|
||||
|
@ -63,7 +62,6 @@ public class HttpSenderOverHTTP extends HttpSender
|
|||
{
|
||||
try
|
||||
{
|
||||
this.exchange = exchange;
|
||||
this.contentByteBuffer = contentBuffer;
|
||||
this.lastContent = lastContent;
|
||||
this.callback = callback;
|
||||
|
@ -92,7 +90,6 @@ public class HttpSenderOverHTTP extends HttpSender
|
|||
{
|
||||
try
|
||||
{
|
||||
this.exchange = exchange;
|
||||
this.contentByteBuffer = contentBuffer;
|
||||
this.lastContent = lastContent;
|
||||
this.callback = callback;
|
||||
|
@ -158,6 +155,7 @@ public class HttpSenderOverHTTP extends HttpSender
|
|||
protected Action process() throws Exception
|
||||
{
|
||||
HttpClient httpClient = getHttpChannel().getHttpDestination().getHttpClient();
|
||||
HttpExchange exchange = getHttpExchange();
|
||||
ByteBufferPool bufferPool = httpClient.getByteBufferPool();
|
||||
boolean useDirectByteBuffers = httpClient.isUseOutputDirectByteBuffers();
|
||||
while (true)
|
||||
|
|
1
pom.xml
1
pom.xml
|
@ -200,7 +200,6 @@
|
|||
<jackson.version>2.17.0</jackson.version>
|
||||
<jacoco.maven.plugin.version>0.8.12</jacoco.maven.plugin.version>
|
||||
<javadoc.verbose>false</javadoc.verbose>
|
||||
<jboss-logmanager.version>3.0.5.Final</jboss-logmanager.version>
|
||||
<jboss-logmanager.version>3.0.6.Final</jboss-logmanager.version>
|
||||
<jboss-threads.version>3.6.1.Final</jboss-threads.version>
|
||||
<jboss.logging.annotations.version>2.2.1.Final</jboss.logging.annotations.version>
|
||||
|
|
Loading…
Reference in New Issue