This is an automated email from the ASF dual-hosted git repository.
sergeykamov pushed a commit to branch NLPCRAFT-70_NEW
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/NLPCRAFT-70_NEW by this push:
new 26fbef2 WIP.
26fbef2 is described below
commit 26fbef2f2dfc682ad25168ce85e4847a0a3f1530
Author: Sergey Kamov <[email protected]>
AuthorDate: Wed Jul 21 17:21:07 2021 +0300
WIP.
---
.../scala/org/apache/nlpcraft/probe/mgrs/deploy/NCDeployManager.scala | 1 -
.../main/scala/org/apache/nlpcraft/server/probe/NCProbeManager.scala | 1 +
.../scala/org/apache/nlpcraft/server/sugsyn/NCSuggestionRequest.scala | 3 ++-
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/deploy/NCDeployManager.scala
b/nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/deploy/NCDeployManager.scala
index beaa447..0a1de4a 100644
---
a/nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/deploy/NCDeployManager.scala
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/probe/mgrs/deploy/NCDeployManager.scala
@@ -902,7 +902,6 @@ object NCDeployManager extends NCService {
s"mdlId=${mdl.getId}, " +
s"elmId=$elmId" +
s"]")
-
}
/**
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/server/probe/NCProbeManager.scala
b/nlpcraft/src/main/scala/org/apache/nlpcraft/server/probe/NCProbeManager.scala
index 5a0f203..a18ad80 100644
---
a/nlpcraft/src/main/scala/org/apache/nlpcraft/server/probe/NCProbeManager.scala
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/server/probe/NCProbeManager.scala
@@ -66,6 +66,7 @@ object NCProbeManager extends NCService {
def reconnectTimeoutMs: Long = getLong(s"$pre.reconnectTimeoutMs")
def pingTimeoutMs: Long = getLong(s"$pre.pingTimeoutMs")
def soTimeoutMs: Int = getInt(s"$pre.soTimeoutMs")
+
/**
*
*/
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/server/sugsyn/NCSuggestionRequest.scala
b/nlpcraft/src/main/scala/org/apache/nlpcraft/server/sugsyn/NCSuggestionRequest.scala
index 2c01ca0..108a5f8 100644
---
a/nlpcraft/src/main/scala/org/apache/nlpcraft/server/sugsyn/NCSuggestionRequest.scala
+++
b/nlpcraft/src/main/scala/org/apache/nlpcraft/server/sugsyn/NCSuggestionRequest.scala
@@ -25,6 +25,7 @@ package org.apache.nlpcraft.server.sugsyn
case class NCSuggestionRequest(words: Seq[String], index: Int) {
require(index >= 0 && index < words.length)
- override def toString: String = s"Request: ${words.zipWithIndex.map { case
(w, i) => if (i != index) w else s"<$w>" }.mkString(" ")}"
+ override def toString: String =
+ s"Request: ${words.zipWithIndex.map { case (w, i) => if (i != index) w
else s"<$w>" }.mkString(" ")}"
}