[RICPLT-2584,2789] Code fixes + tests for E2T instance shutdown flow
[ric-plt/e2mgr.git] / E2Manager / clients / http_client.go
index 187d83c..e4e5005 100644 (file)
@@ -34,7 +34,9 @@ type HttpClient struct {
 }
 
 func NewHttpClient() *HttpClient {
-       return &HttpClient{}
+       return &HttpClient{
+               &http.Client{},
+       }
 }
 
 func (c *HttpClient) Delete(url, contentType string, body io.Reader) (resp *http.Response, err error) {