aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Mitsura <oleg.mitsura@amdocs.com>2019-11-06 11:29:55 -0500
committerOleg Mitsura <omitsura@gmail.com>2019-11-06 16:32:40 +0000
commit6db8d2c0f4a81724561dab243f116fe389f9b5a5 (patch)
treea279993b96c0534561c7a4fed3b74020d52f84bf
parent94f1bfcc93e46dc08f806e9a3b495abc9d9bf53d (diff)
Fixed typo...
Issue-ID: CCSDK-1908 Signed-off-by: Oleg Mitsura <oleg.mitsura@amdocs.com> Change-Id: I962db89c620c46f8979df03c20c26d3bfc32fb73
-rw-r--r--ms/blueprintsprocessor/functions/netconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/core/NetconfSessionImpl.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/blueprintsprocessor/functions/netconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/core/NetconfSessionImpl.kt b/ms/blueprintsprocessor/functions/netconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/core/NetconfSessionImpl.kt
index 69b9d70bf..c2b2d6414 100644
--- a/ms/blueprintsprocessor/functions/netconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/core/NetconfSessionImpl.kt
+++ b/ms/blueprintsprocessor/functions/netconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/core/NetconfSessionImpl.kt
@@ -69,7 +69,7 @@ class NetconfSessionImpl(private val deviceInfo: DeviceInfo, private val rpcServ
var retryNum = 3
while(rpcService.closeSession(false).status
.equals(RpcStatus.FAILURE, true) &&retryNum>0) {
- log.error("disconnect: graceful disconnect failed, attempt $retryNum")
+ log.error("disconnect: graceful disconnect failed, retrying $retryNum times...")
retryNum--;
}
//if we can't close the session, try to force terminate.