summaryrefslogtreecommitdiff
path: root/qa/Rakefile
diff options
context:
space:
mode:
authorSanad Liaquat <sliaquat@gitlab.com>2019-03-26 08:25:36 +0500
committerSanad Liaquat <sliaquat@gitlab.com>2019-03-26 08:25:36 +0500
commited7e36628f077a5e90060f09320d679a0879268f (patch)
tree273b1826570c11e0fc098b49cba2e3617c314a44 /qa/Rakefile
parent5765c5989a23e6db0f54440bc9bbdb37f5eb3677 (diff)
downloadgitlab-ce-ed7e36628f077a5e90060f09320d679a0879268f.tar.gz
Fix url property format and use conn. pool
Also update arrivalRate to a max of 100
Diffstat (limited to 'qa/Rakefile')
-rw-r--r--qa/Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/Rakefile b/qa/Rakefile
index d0101740f1a..7ac018f7286 100644
--- a/qa/Rakefile
+++ b/qa/Rakefile
@@ -27,9 +27,9 @@ task :run_artillery_load_tests do
end
urls = YAML.safe_load(File.read(urls_file))
- ENV['HOST_URL'] = urls[:host]
- ENV['LARGE_ISSUE_URL'] = urls[:large_issue]
- ENV['LARGE_MR_URL'] = urls[:large_mr]
+ ENV['HOST_URL'] = urls["host"]
+ ENV['LARGE_ISSUE_URL'] = urls["large_issue"]
+ ENV['LARGE_MR_URL'] = urls["large_mr"]
end
sh('artillery run load/artillery.yml -o report.json')