Skip to content

Commit

Permalink
Form data being taken from env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
abhijitkane committed Jun 27, 2014
1 parent f608d36 commit 2ed4724
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/runners/RequestRunner.js
Expand Up @@ -45,6 +45,7 @@ var RequestRunner = jsface.Class([Queue, EventEmitter], {
if (request) {
this._processUrlUsingEnvVariables(request);
var RequestOptions = this._getRequestOptions(request);
request.data=request.transformed.data;
request.startTime = new Date().getTime();
var unireq = unirest.request(RequestOptions, function(error, response, body) {
if(response) {
Expand Down

1 comment on commit 2ed4724

@patimen
Copy link

@patimen patimen commented on 2ed4724 Jul 3, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This broke running multiple iterations with variables in the data!

Please sign in to comment.