diff options
author | Zhaoxing <meng.zhaoxing1@zte.com.cn> | 2017-11-01 14:34:44 +0800 |
---|---|---|
committer | Zhaoxing <meng.zhaoxing1@zte.com.cn> | 2017-11-01 14:34:44 +0800 |
commit | 1efc786e8d10edf728b8442ca98b36b681da29d8 (patch) | |
tree | 41dab5d60a6f442662f43b9f9ce64c1a75be01b9 /wfenginemgrservice | |
parent | 20babe4f7936a82c54d43e715efebe1fbc680525 (diff) |
Fix the docker build error for vfc-nfvo-wfengine
Change-Id: I0421eff58c13aa93a2b2f533cc4b9e2d74b20c66
Issue-id: VFC-445
Signed-off-by: Zhaoxing <meng.zhaoxing1@zte.com.cn>
Diffstat (limited to 'wfenginemgrservice')
-rw-r--r-- | wfenginemgrservice/src/main/java/org/onap/workflow/common/RestClient.java | 2 |
1 files changed, 1 insertions, 1 deletions
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();
|