summaryrefslogtreecommitdiff
path: root/tests/http/agent.js
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2015-11-03 14:39:44 -0800
committerAdam Ierymenko <adam.ierymenko@gmail.com>2015-11-03 14:39:44 -0800
commit4b655ab22c1209ebdab5cee909bd01c244a84e2d (patch)
tree0b0306a198d737f1449979ede912e88831e75086 /tests/http/agent.js
parentd9d11042ca03fe2f2dea6c9bbae3a5b1e62c818a (diff)
downloadinfinitytier-4b655ab22c1209ebdab5cee909bd01c244a84e2d.tar.gz
infinitytier-4b655ab22c1209ebdab5cee909bd01c244a84e2d.zip
tests
Diffstat (limited to 'tests/http/agent.js')
-rw-r--r--tests/http/agent.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/http/agent.js b/tests/http/agent.js
index bc7c475e..e90ee482 100644
--- a/tests/http/agent.js
+++ b/tests/http/agent.js
@@ -4,20 +4,20 @@
// Customizable parameters:
// Maximum interval between test attempts
-var TEST_INTERVAL_MAX = 60000;
+var TEST_INTERVAL_MAX = (60000 * 5);
// Test timeout in ms
-var TEST_TIMEOUT = 30000;
+var TEST_TIMEOUT = 60000;
// Where should I contact to register and query a list of other test agents?
-var SERVER_HOST = '104.238.141.145';
+var SERVER_HOST = '174.136.102.178';
var SERVER_PORT = 18080;
// Which port should agents use for their HTTP?
var AGENT_PORT = 18888;
// Payload size in bytes
-var PAYLOAD_SIZE = 10000;
+var PAYLOAD_SIZE = 5000;
// ---------------------------------------------------------------------------