398285 - ProxyServlet mixes cookies from different clients.

Now ProxyServlet's HttpClient uses HttpCookieStore.Empty, so it never stores cookies.
This commit is contained in:
Simone Bordet 2013-01-16 14:34:57 +01:00
parent b3f6739d51
commit cda27ae4a1
1 changed files with 2 additions and 1 deletions

View File

@ -783,7 +783,8 @@ public class ProxyServletTest
}
@Test(expected = TimeoutException.class)
public void shouldHandleWrongContentLength() throws Exception {
public void shouldHandleWrongContentLength() throws Exception
{
prepareProxy(new ProxyServlet());
prepareServer(new HttpServlet() {
@Override