aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrinda Santh Muthuramalingam <brindasanth@in.ibm.com>2019-11-07 14:13:35 +0000
committerGerrit Code Review <gerrit@onap.org>2019-11-07 14:13:35 +0000
commita6eaf2d99f3b709dffaa65132d0e4b8fba277aba (patch)
tree671caece09eb531b9802eac2ccb53858ecece46a
parent1e1ac926da3bc75e55a435a4b71b53642c0ccca8 (diff)
parent6db8d2c0f4a81724561dab243f116fe389f9b5a5 (diff)
Merge "Fixed typo..."
-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.