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

aradzinski pushed a commit to branch NLPCRAFT-108
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git


The following commit(s) were added to refs/heads/NLPCRAFT-108 by this push:
     new f2d94b9  Update NCCli.scala
f2d94b9 is described below

commit f2d94b95e0ce530b9ba0b3ee4b9fa9e9338b6f86
Author: Aaron Radzinski <[email protected]>
AuthorDate: Sat Oct 3 01:11:26 2020 -0700

    Update NCCli.scala
---
 .../main/scala/org/apache/nlpcraft/model/tools/cmdline/NCCli.scala    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/tools/cmdline/NCCli.scala 
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/tools/cmdline/NCCli.scala
index f657518..66c9694 100644
--- 
a/nlpcraft/src/main/scala/org/apache/nlpcraft/model/tools/cmdline/NCCli.scala
+++ 
b/nlpcraft/src/main/scala/org/apache/nlpcraft/model/tools/cmdline/NCCli.scala
@@ -824,7 +824,7 @@ object NCCli extends App {
     private def mkServerBeaconTable(beacon: NCCliServerBeacon): NCAsciiTable = 
{
         val tbl = new NCAsciiTable
 
-        tbl += ("PID", s"${g(beacon.pid)}")
+        tbl += (s"PID${y("\u26a1")}", s"${g(beacon.pid)}")
         tbl += ("JDBC URL", s"${g(beacon.jdbcUrl)}")
         tbl += ("REST endpoint", s"${g(beacon.restEndpoint)}")
         tbl += ("Uplink", s"${g(beacon.upLink)}")
@@ -953,7 +953,7 @@ object NCCli extends App {
         pinger.start()
 
         while (!exit) {
-            val prompt = if (state.isServer) s"${y("\u26a1 ")}${g("\u25b6")} " 
else s"${g("\u25b6")} "
+            val prompt = if (state.isServer) s"${y("\u26a1")}${g("\u25b6")} " 
else s"${g("\u25b6")} "
 
             val rawLine =
                 try

Reply via email to