diff options
author | Brinda Santh Muthuramalingam <brindasanth@in.ibm.com> | 2019-11-07 14:13:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-07 14:13:35 +0000 |
commit | a6eaf2d99f3b709dffaa65132d0e4b8fba277aba (patch) | |
tree | 671caece09eb531b9802eac2ccb53858ecece46a /ms/blueprintsprocessor/functions | |
parent | 1e1ac926da3bc75e55a435a4b71b53642c0ccca8 (diff) | |
parent | 6db8d2c0f4a81724561dab243f116fe389f9b5a5 (diff) |
Merge "Fixed typo..."
Diffstat (limited to 'ms/blueprintsprocessor/functions')
-rw-r--r-- | ms/blueprintsprocessor/functions/netconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/core/NetconfSessionImpl.kt | 2 |
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. |