From: Oleg Mitsura Date: Wed, 6 Nov 2019 16:29:55 +0000 (-0500) Subject: Fixed typo... X-Git-Tag: 0.6.5~15 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F62%2F98062%2F1;p=ccsdk%2Fcds.git Fixed typo... Issue-ID: CCSDK-1908 Signed-off-by: Oleg Mitsura Change-Id: I962db89c620c46f8979df03c20c26d3bfc32fb73 --- 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.