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