You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ma...@apache.org on 2017/09/19 07:55:12 UTC

[incubator-openwhisk-performance] branch wrk-load updated (2fa5f43 -> 73c9ae3)

This is an automated email from the ASF dual-hosted git repository.

markusthoemmes pushed a change to branch wrk-load
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-performance.git.


    omit 2fa5f43  Define right location of post.lua
     new 73c9ae3  Define right location of post.lua

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (2fa5f43)
            \
             N -- N -- N   refs/heads/wrk-load (73c9ae3)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 tests/throughput.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@openwhisk.apache.org" <co...@openwhisk.apache.org>'].

[incubator-openwhisk-performance] 01/01: Define right location of post.lua

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

markusthoemmes pushed a commit to branch wrk-load
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-performance.git

commit 73c9ae3b245e12eaa1e22705d02aec601838a5ca
Author: Markus Thoemmes <ma...@de.ibm.com>
AuthorDate: Wed Sep 13 11:40:24 2017 +0200

    Define right location of post.lua
---
 tests/throughput.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/throughput.sh b/tests/throughput.sh
index 6bf14cf..2121511 100755
--- a/tests/throughput.sh
+++ b/tests/throughput.sh
@@ -1,6 +1,6 @@
 #!/bin/sh
 set -e
-currentDir="$(dirname "$0")"
+currentDir="$(cd dirname "$0"; pwd)"
 
 # Host to use. Needs to include the protocol.
 host=$1
@@ -20,11 +20,12 @@ action="noopThroughput"
 
 # run throughput tests
 encodedAuth=$(echo "$credentials" | base64 | tr -d '\n')
-docker run --pid=host --userns=host --rm -v "$(pwd)":/data williamyeh/wrk \
+docker run --pid=host --userns=host --rm -v "$currentDir":/data williamyeh/wrk \
   --threads "$threads" \
   --connections "$concurrency" \
   --duration "$duration" \
   --header "Authorization: basic $encodedAuth" \
   "$host/api/v1/namespaces/_/actions/$action?blocking=true" \
   --latency \
+  --timeout 10s \
   --script post.lua
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
"commits@openwhisk.apache.org" <co...@openwhisk.apache.org>.