adjust timeout for running under hudson

This commit is contained in:
akhil 2014-01-13 12:28:12 -08:00
parent 8df72f9438
commit fde7292087
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
// kill the connection after a bit, verifying that the
// flood of requests was eventually halted.
- server.setTimeout(200, function(conn) {
+ server.setTimeout(2000, function(conn) {
+ server.setTimeout(500, function(conn) {
gotTimeout = true;
conn.destroy();
});