You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by al...@apache.org on 2020/04/14 07:58:52 UTC

[openwhisk-wskdebug] 01/01: include hidden `--ignoreCerts` option in usage info

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

alexkli pushed a commit to branch ignorecerts
in repository https://gitbox.apache.org/repos/asf/openwhisk-wskdebug.git

commit 70aac8727295e2b090d7e8bdf93014fa64cb6f1b
Author: Alexander Klimetschek <ak...@adobe.com>
AuthorDate: Tue Apr 14 00:58:23 2020 -0700

    include hidden `--ignoreCerts` option in usage info
---
 index.js | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/index.js b/index.js
index 6724d6a..5f267f7 100644
--- a/index.js
+++ b/index.js
@@ -197,6 +197,11 @@ function yargsOptions(yargs) {
         group: "Agent options:",
         describe: "Remove backup and any helper actions on exit. Makes shutdown slower."
     });
+    yargs.option("ignore-certs", {
+        type: "boolean",
+        group: "Agent options:",
+        describe: "Bypass TLS certificate checking for openwhisk requests."
+    });
 
     // nodejs options
     yargs.option("inspect", {