Skip to content
Snippets Groups Projects
Commit 5d9c16e4 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

Merge pull request #2057 from zaach/adjust_load_gen_for_api_changes

Remove extraneous params in load_gen requests
parents 568a276c 9e72d514
No related branches found
No related tags found
No related merge requests found
......@@ -77,8 +77,7 @@ exports.startFunc = function(cfg, cb) {
// and simulate clickthrough
wcli.post(cfg, '/wsapi/complete_user_creation', context, {
token: r.body,
ephemeral: false
token: r.body
}, function (err, r) {
if (err) {
return cb(err);
......
......@@ -74,8 +74,7 @@ exports.startFunc = function(cfg, cb) {
if (r.code !== 200) return cb("can't get verification secret: " + r.code);
// and simulate clickthrough
wcli.post(cfg, '/wsapi/complete_user_creation', context, {
token: r.body,
ephemeral: false
token: r.body
}, function (err, r) {
try {
if (err) throw err;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment