This is an automated email from the ASF dual-hosted git repository.
chetanm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git
The following commit(s) were added to refs/heads/master by this push:
new 2759666 Fix class name in the gatling test instructions (#4190)
2759666 is described below
commit 2759666f7f3bf8f2d07bc7886a2ecaa1575c4039
Author: Danilo Filgueira Mendonça <[email protected]>
AuthorDate: Fri Dec 21 16:02:02 2018 +0100
Fix class name in the gatling test instructions (#4190)
Fixes #4188
---
tests/performance/README.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/performance/README.md b/tests/performance/README.md
index dd780c3..5c9dbdf 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
```