fix https bug 03/41703/1
authorShiwei Tian <tian.shiwei@zte.com.cn>
Mon, 9 Apr 2018 10:52:50 +0000 (18:52 +0800)
committerShiwei Tian <tian.shiwei@zte.com.cn>
Mon, 9 Apr 2018 10:52:50 +0000 (18:52 +0800)
Issue-ID: HOLMES-104

Change-Id: Ia2b37ffde95de4d5ea8f99340e1c9fc5b0063c07
Signed-off-by: Shiwei Tian <tian.shiwei@zte.com.cn>
holmes-actions/src/main/java/org/onap/holmes/common/utils/HttpsUtils.java
holmes-actions/src/test/java/org/onap/holmes/common/utils/HttpsUtilsTest.java

index 29a1c91..48ed0ae 100644 (file)
@@ -183,15 +183,7 @@ public class HttpsUtils {
         try {
             httpResponse = httpClient.execute(httpRequest);
         } catch (Exception e) {
-            e.printStackTrace();
             throw new CorrelationException("Failed to get data from server" ,e);
-        } finally {
-            if (httpRequest != null) {
-                httpRequest.releaseConnection();
-            }
-            if (httpClient != null) {
-                httpClient.close();
-            }
         }
         return httpResponse;
     }
index c47542b..087c1d3 100644 (file)
@@ -90,9 +90,6 @@ public class HttpsUtilsTest {
         HttpEntity responseEntity = new StringEntity("Test");
         EasyMock.expect(response.getEntity()).andReturn(responseEntity);
 
-        httpClient.close();
-        EasyMock.expectLastCall();
-
         PowerMock.replayAll();
 
 
@@ -135,9 +132,6 @@ public class HttpsUtilsTest {
         HttpEntity responseEntity = new StringEntity("Test");
         EasyMock.expect(response.getEntity()).andReturn(responseEntity);
 
-        httpClient.close();
-        EasyMock.expectLastCall();
-
         PowerMock.replayAll();
 
 
@@ -182,9 +176,6 @@ public class HttpsUtilsTest {
         HttpEntity responseEntity = new StringEntity("Test");
         EasyMock.expect(response.getEntity()).andReturn(responseEntity);
 
-        httpClient.close();
-        EasyMock.expectLastCall();
-
         PowerMock.replayAll();
 
 
@@ -230,9 +221,6 @@ public class HttpsUtilsTest {
         HttpEntity responseEntity = new StringEntity("Test");
         EasyMock.expect(response.getEntity()).andReturn(responseEntity);
 
-        httpClient.close();
-        EasyMock.expectLastCall();
-
         PowerMock.replayAll();