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

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


The following commit(s) were added to refs/heads/master by this push:
     new f3e140e  Accept self-signed certs via https. (#4)
f3e140e is described below

commit f3e140e47ed04448a3cdc3430070e4d48bc96ebb
Author: Jeremias Werner <jeremias.wer...@gmail.com>
AuthorDate: Wed Mar 28 12:48:32 2018 +0200

    Accept self-signed certs via https. (#4)
---
 tests/create.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/create.sh b/tests/create.sh
index 9198a9a..1a79649 100755
--- a/tests/create.sh
+++ b/tests/create.sh
@@ -10,8 +10,8 @@ action=$3
 
 # create a noop action
 echo "Creating action $action"
-curl -u "$credentials" "$host/api/v1/namespaces/_/actions/$action" -XPUT -d 
'{"namespace":"_","name":"test","exec":{"kind":"nodejs:default","code":"function
 main(){return {};}"}}' -H "Content-Type: application/json"
+curl -k -u "$credentials" "$host/api/v1/namespaces/_/actions/$action" -XPUT -d 
'{"namespace":"_","name":"test","exec":{"kind":"nodejs:default","code":"function
 main(){return {};}"}}' -H "Content-Type: application/json"
 
 # run the noop action
 echo "Running $action once to assert an intact system"
-curl -u "$credentials" 
"$host/api/v1/namespaces/_/actions/$action?blocking=true" -XPOST
\ No newline at end of file
+curl -k -u "$credentials" 
"$host/api/v1/namespaces/_/actions/$action?blocking=true" -XPOST

-- 
To stop receiving notification emails like this one, please contact
markusthoem...@apache.org.

Reply via email to