chetanmeh closed pull request #4190: Fix class path in the gatling test instructions URL: https://github.com/apache/incubator-openwhisk/pull/4190
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/tests/performance/README.md b/tests/performance/README.md index dd780c3761..5c9dbdf3f4 100644 --- a/tests/performance/README.md +++ b/tests/performance/README.md @@ -81,7 +81,7 @@ MAX_ERRORS_ALLOWED_PERCENTAGE (default: 0) You can run the simulation with (in OPENWHISK_HOME) ``` -OPENWHISK_HOST="openwhisk.mydomain.com" CONNECTIONS="10" REQUESTS_PER_SEC="50" ./gradlew gatlingRun-ApiV1Simulation +OPENWHISK_HOST="openwhisk.mydomain.com" CONNECTIONS="10" REQUESTS_PER_SEC="50" ./gradlew gatlingRun-org.apache.openwhisk.ApiV1Simulation ``` ##### Latency Simulation @@ -119,7 +119,7 @@ for each kind by adding the kind as prefix in upper case, like `JAVA_MEAN_RESPON You can run the simulation with (in OPENWHISK_HOME) ``` -OPENWHISK_HOST="openwhisk.mydomain.com" MEAN_RESPONSE_TIME="20" API_KEY="UUID:KEY" ./gradlew gatlingRun-LatencySimulation +OPENWHISK_HOST="openwhisk.mydomain.com" MEAN_RESPONSE_TIME="20" API_KEY="UUID:KEY" ./gradlew gatlingRun-org.apache.openwhisk.LatencySimulation ``` ##### BlockingInvokeOneActionSimulation @@ -150,7 +150,7 @@ MAX_ERRORS_ALLOWED_PERCENTAGE (default: 0) You can run the simulation with ``` -OPENWHISK_HOST="openwhisk.mydomain.com" CONNECTIONS="10" REQUESTS_PER_SEC="50" API_KEY="UUID:KEY" ./gradlew gatlingRun-BlockingInvokeOneActionSimulation +OPENWHISK_HOST="openwhisk.mydomain.com" CONNECTIONS="10" REQUESTS_PER_SEC="50" API_KEY="UUID:KEY" ./gradlew gatlingRun-org.apache.openwhisk.BlockingInvokeOneActionSimulation ``` ##### ColdBlockingInvokeSimulation @@ -181,5 +181,5 @@ MAX_ERRORS_ALLOWED_PERCENTAGE (default: 0) You can run the simulation with ``` -OPENWHISK_HOST="openwhisk.mydomain.com" USERS="10" REQUESTS_PER_SEC="50" ./gradlew gatlingRun-ColdBlockingInvokeSimulation +OPENWHISK_HOST="openwhisk.mydomain.com" USERS="10" REQUESTS_PER_SEC="50" ./gradlew gatlingRun-org.apache.openwhisk.ColdBlockingInvokeSimulation ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
