From 1efc786e8d10edf728b8442ca98b36b681da29d8 Mon Sep 17 00:00:00 2001 From: Zhaoxing Date: Wed, 1 Nov 2017 14:34:44 +0800 Subject: Fix the docker build error for vfc-nfvo-wfengine Change-Id: I0421eff58c13aa93a2b2f533cc4b9e2d74b20c66 Issue-id: VFC-445 Signed-off-by: Zhaoxing --- .../src/main/java/org/onap/workflow/common/RestClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wfenginemgrservice/src/main/java/org/onap') diff --git a/wfenginemgrservice/src/main/java/org/onap/workflow/common/RestClient.java b/wfenginemgrservice/src/main/java/org/onap/workflow/common/RestClient.java index 4d92dcb..e90da7c 100644 --- a/wfenginemgrservice/src/main/java/org/onap/workflow/common/RestClient.java +++ b/wfenginemgrservice/src/main/java/org/onap/workflow/common/RestClient.java @@ -243,7 +243,7 @@ public class RestClient { httpPost.setHeader("Content-type", "application/json"); httpPost.setHeader(Constants.AUTHORIZATION, ToolUtil.getHeader()); httpPost.setEntity(requestEntity); - returnValue = httpClient.execute(httpPost, responseHandler); // 调接口获取返回值时,必须用此方法 +// returnValue = httpClient.execute(httpPost, responseHandler); // 调接口获取返回值时,必须用此方法 CloseableHttpResponse httpResonse = httpClient.execute(httpPost); if (httpResonse != null && httpResonse.getStatusLine() != null) { int statusCode = httpResonse.getStatusLine().getStatusCode(); -- cgit 1.2.3-korg