You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ja...@apache.org on 2018/08/21 14:00:14 UTC

[incubator-openwhisk-package-kafka] branch master updated: Ignore certificates on creating a trigger within the side-effect action. (#278)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new b30e2e9  Ignore certificates on creating a trigger within the side-effect action. (#278)
b30e2e9 is described below

commit b30e2e99503913e257689557e27bb0f4f45a000c
Author: Christian Bickel <gi...@cbickel.de>
AuthorDate: Tue Aug 21 16:00:08 2018 +0200

    Ignore certificates on creating a trigger within the side-effect action. (#278)
---
 tests/dat/createTriggerActions.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/dat/createTriggerActions.js b/tests/dat/createTriggerActions.js
index 58044ea..d8580f7 100644
--- a/tests/dat/createTriggerActions.js
+++ b/tests/dat/createTriggerActions.js
@@ -6,6 +6,6 @@ var openwhisk = require('openwhisk');
 function main(params) {
     console.log(JSON.stringify(params));
     var name = params.messages[0].value;
-    var ow = openwhisk();
+    var ow = openwhisk({ignore_certs: true});
     return ow.triggers.create({name: name});
 }