Skip to content

Commit

Permalink
7616 correct body params filename (#7635)
Browse files Browse the repository at this point in the history
* correct body params file name

close #7616

* update gradle gatling plugin
  • Loading branch information
atomfrede authored and wing328 committed Feb 12, 2018
1 parent 803cafb commit 86697fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -252,7 +252,7 @@ public void preprocessSwagger(Swagger swagger) {
operation.setVendorExtension("x-gatling-body-feeder", operation.getOperationId() + "BodyFeeder");
operation.setVendorExtension("x-gatling-body-feeder-params", StringUtils.join(sessionBodyVars, ","));
try {
FileUtils.writeStringToFile(new File(outputFolder + File.separator + dataFolder + File.separator + operation.getOperationId() + "-" + "BodyParams.csv"), StringUtils.join(bodyFeederParams, ","));
FileUtils.writeStringToFile(new File(outputFolder + File.separator + dataFolder + File.separator + operation.getOperationId() + "-" + "bodyParams.csv"), StringUtils.join(bodyFeederParams, ","));
} catch (IOException ioe) {
LOGGER.error("Could not create feeder file for operationId" + operation.getOperationId(), ioe);
}
Expand Down
@@ -1,5 +1,5 @@
plugins {
id 'com.github.lkishalmi.gatling' version '0.4.1'
id 'com.github.lkishalmi.gatling' version '0.7.1'
}

repositories {
Expand Down

0 comments on commit 86697fe

Please sign in to comment.