Issue #2237 reduce large URI to avoid split write
Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
parent
a51920d650
commit
c3670d5870
|
@ -220,7 +220,7 @@ public abstract class HttpServerTestBase extends HttpServerTestFixture
|
||||||
((AbstractLogger)Log.getLogger(HttpConnection.class)).info("expect URI is too large, then ISE extra data ...");
|
((AbstractLogger)Log.getLogger(HttpConnection.class)).info("expect URI is too large, then ISE extra data ...");
|
||||||
OutputStream os = client.getOutputStream();
|
OutputStream os = client.getOutputStream();
|
||||||
|
|
||||||
byte[] buffer = new byte[64 * 1024];
|
byte[] buffer = new byte[10 * 1024];
|
||||||
buffer[0]='G';
|
buffer[0]='G';
|
||||||
buffer[1]='E';
|
buffer[1]='E';
|
||||||
buffer[2]='T';
|
buffer[2]='T';
|
||||||
|
|
Loading…
Reference in New Issue