diff options
author | Oleg Mitsura <oleg.mitsura@amdocs.com> | 2019-11-06 11:29:55 -0500 |
---|---|---|
committer | Oleg Mitsura <oleg.mitsura@amdocs.com> | 2019-11-06 11:29:55 -0500 |
commit | 4a86dabfff03c722111ca0757d5320fbd88f0cfd (patch) | |
tree | 934ccd00d30ac4823d4595f3c4e12688b52b9878 | |
parent | c2d06ed4d1d85674277a2225b5999967cf59a432 (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.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 dac977bdd..0f929df9e 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 @@ -79,7 +79,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. |