stop test hanging forever so we can work out what is going wrong with intermittant failure
This commit is contained in:
parent
8a40a0d9fb
commit
68fe9c4b82
|
@ -242,6 +242,7 @@ public abstract class ContinuationBase extends TestCase
|
|||
try
|
||||
{
|
||||
Socket socket = new Socket("localhost",port);
|
||||
socket.setSoTimeout(10000);
|
||||
socket.getOutputStream().write(request.getBytes("UTF-8"));
|
||||
|
||||
response = toString(socket.getInputStream());
|
||||
|
|
Loading…
Reference in New Issue