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/07/15 05:32:11 UTC

[openwhisk-wskdebug] branch stop-spinner created (now 15c90c4)

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

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


      at 15c90c4  keeps showing "Installing agent" spinner #65

This branch includes the following new commits:

     new 15c90c4  keeps showing "Installing agent" spinner #65

The 1 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.



[openwhisk-wskdebug] 01/01: keeps showing "Installing agent" spinner #65

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 15c90c42cd9cf489e74313928ea736afa5a411e8
Author: Alexander Klimetschek <ak...@adobe.com>
AuthorDate: Tue Jul 14 22:29:30 2020 -0700

    keeps showing "Installing agent" spinner #65
    
    also fix wording
---
 src/agentmgr.js | 2 +-
 src/debugger.js | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/agentmgr.js b/src/agentmgr.js
index 25b9b1f..d9e4a2c 100644
--- a/src/agentmgr.js
+++ b/src/agentmgr.js
@@ -447,7 +447,7 @@ class AgentMgr {
                 await deleteActionIfExists(this.wsk, `${this.actionName}_wskdebug_completed`);
 
             } else if (!isStartup) {
-                log.log(`Following helper actions are not removed to make shutdown fast. Remove using --cleanup if desired.`);
+                log.log(`Following helper actions are not removed to keep shutdown fast. Remove using --cleanup if desired.`);
                 log.log(`- ${log.highlightColor(copy)}`);
                 if (!this.concurrency && !this.ngrokAgent) {
                     log.log("- " + log.highlightColor(`${this.actionName}_wskdebug_invoked`));
diff --git a/src/debugger.js b/src/debugger.js
index e0db32a..f2e1596 100644
--- a/src/debugger.js
+++ b/src/debugger.js
@@ -169,6 +169,7 @@ class Debugger {
     }
 
     async logDetails() {
+        log.stopSpinner();
         log.log();
         log.highlight("Action     : ", `/${this.wskProps.namespace}/${this.actionName}`);
         if (this.sourcePath) {