change instruments timeout to something more reasonable

no need to wait 300s if instruments fails to launch
This commit is contained in:
Jonathan Lipps
2013-09-06 14:43:55 -07:00
parent 758b36d9a8
commit 70f5c09244
+1 -1
View File
@@ -68,7 +68,7 @@ Instruments.prototype.startSocketServer = function(sock) {
this.exitHandler(1);
};
var socketConnectTimeout = setTimeout(onSocketNeverConnect.bind(this), 300000);
var socketConnectTimeout = setTimeout(onSocketNeverConnect.bind(this), 20000);
this.socketServer = net.createServer({allowHalfOpen: true}, function(conn) {
if (!this.hasConnected) {