From: Abdelmuhaimen Seaudi Date: Tue, 11 Feb 2020 08:40:53 +0000 (+0000) Subject: add support for reply-time-out in cds blueprint X-Git-Tag: 0.7.0~55^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=287412d3bb45b60a9d72ec113ef60a6631ec6085;p=ccsdk%2Fcds.git add support for reply-time-out in cds blueprint Issue-ID: CCSDK-2089 Signed-off-by: Abdelmuhaimen Seaudi Change-Id: Ic325aaa37df2db27713728b1d1fb7903298b02d5 Signed-off-by: Abdelmuhaimen Seaudi --- diff --git a/ms/blueprintsprocessor/functions/netconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/DeviceInfo.kt b/ms/blueprintsprocessor/functions/netconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/DeviceInfo.kt index 2f10bb56b..4456cb0de 100644 --- a/ms/blueprintsprocessor/functions/netconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/DeviceInfo.kt +++ b/ms/blueprintsprocessor/functions/netconf-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/netconf/executor/api/DeviceInfo.kt @@ -32,8 +32,8 @@ class DeviceInfo { var connectTimeout: Long = 30 @get:JsonIgnore var source: String? = null - @get:JsonIgnore - var replyTimeout: Int = 20 + @get:JsonProperty("reply-time-out") + var replyTimeout: Int = 30 @get:JsonIgnore var idleTimeout: Int = 99999