This is an automated email from the ASF dual-hosted git repository. alexkli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/openwhisk-wskdebug.git
commit f0a551e7abcc734ccbaa419f51528b8d24db185f 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", {
