diff options
author | Dan Timoney <dtimoney@att.com> | 2019-07-09 17:45:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-09 17:45:04 +0000 |
commit | 630053dd9a2bc73a9ede63da0dc46f928cfdadc1 (patch) | |
tree | ac44e92bbd9a0bca2db470ffa3950153083f3701 | |
parent | 22d3293ec88d18e20f58c87e3f34c1cd24ad61f4 (diff) | |
parent | 373085385b30c0fa05b650c7eb733ca8e31ca328 (diff) |
Merge "Fix interrupt state left ON on NetconfSessionImpl.syncRpc()"
-rw-r--r-- | ms/blueprintsprocessor/functions/netconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/core/NetconfSessionImpl.kt | 1 |
1 files changed, 0 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 b1121b3d4..4daaceeff 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 @@ -101,7 +101,6 @@ class NetconfSessionImpl(private val deviceInfo: DeviceInfo, private val rpcServ return streamHandler.getFutureFromSendMessage(streamHandler.sendMessage(formattedRequest, messageId), replyTimeout.toLong(), TimeUnit.SECONDS) } catch (e: InterruptedException) { - Thread.currentThread().interrupt() throw NetconfException("$deviceInfo: Interrupted while waiting for reply for request: $formattedRequest", e) } catch (e: TimeoutException) { throw NetconfException("$deviceInfo: Timed out while waiting for reply for request $formattedRequest after $replyTimeout sec.", |