From 8c6af24ebc76b26ef7c7e8dff3d76ef97c2ca2bd Mon Sep 17 00:00:00 2001 From: tknew2 Date: Thu, 9 Oct 2014 14:18:43 +0200 Subject: [PATCH] longer timeout when requesting metadata --- lib/Interactor/HttpRequest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Interactor/HttpRequest.js b/lib/Interactor/HttpRequest.js index 90044c85..026176c8 100644 --- a/lib/Interactor/HttpRequest.js +++ b/lib/Interactor/HttpRequest.js @@ -26,7 +26,7 @@ HttpRequest.post = function(opts, cb) { var timeout = setTimeout(function() { cb({msg : 'Connection timed out ' + opts.url, success:false}); - }, 3000); + }, 7000); var req = client.request(options, function(res){ var dt = '';