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 <[email protected]> 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", {
