Issue #2237 reduce large URI to avoid split write

Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
Greg Wilkins 2018-06-01 16:30:07 +02:00
parent a51920d650
commit c3670d5870
1 changed files with 1 additions and 1 deletions

View File

@ -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 ...");
OutputStream os = client.getOutputStream();
byte[] buffer = new byte[64 * 1024];
byte[] buffer = new byte[10 * 1024];
buffer[0]='G';
buffer[1]='E';
buffer[2]='T';