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 19:30:33 UTC

[openwhisk-wskdebug] branch master updated (fa5b0b4 -> fb6606a)

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

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


    from fa5b0b4  performance: do not delete backup and helper actions on exit by default
     new f0a551e  include hidden `--ignoreCerts` option in usage info
     new fb6606a  update usage in readme for --cleanup and --ignore-certs options

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md | 3 +++
 index.js  | 5 +++++
 2 files changed, 8 insertions(+)


[openwhisk-wskdebug] 02/02: update usage in readme for --cleanup and --ignore-certs options

Posted by al...@apache.org.
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 fb6606ada0eecca72a79d72464a5bf6c6c688c3e
Author: Alexander Klimetschek <ak...@adobe.com>
AuthorDate: Tue Apr 14 12:09:38 2020 -0700

    update usage in readme for --cleanup and --ignore-certs options
---
 README.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/README.md b/README.md
index 65cd80d..7d4373a 100644
--- a/README.md
+++ b/README.md
@@ -477,6 +477,9 @@ Agent options:
   --agent-timeout  Debugging agent timeout (seconds). Default: 5 min              [number]
   --ngrok          Use 3rd party service ngrok.com for agent forwarding.         [boolean]
   --ngrok-region   Ngrok region to use. Defaults to 'us'.                         [string]
+  --cleanup        Remove backup and any helper actions on exit. Makes shutdown slower.
+                                                                                 [boolean]
+  --ignore-certs   Bypass TLS certificate checking for openwhisk requests.       [boolean]
 
 Options:
   -v, --verbose  Verbose output. Logs activation parameters and result           [boolean]


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

Posted by al...@apache.org.
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 <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", {