From 287412d3bb45b60a9d72ec113ef60a6631ec6085 Mon Sep 17 00:00:00 2001 From: Abdelmuhaimen Seaudi Date: Tue, 11 Feb 2020 08:40:53 +0000 Subject: 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 --- .../blueprintsprocessor/functions/netconf/executor/api/DeviceInfo.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ms/blueprintsprocessor') 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 -- cgit 1.2.3-korg