summaryrefslogtreecommitdiffstats
path: root/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle
diff options
context:
space:
mode:
Diffstat (limited to 'appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle')
-rw-r--r--appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/ChefApiClientFactory.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/ChefApiClientFactory.java b/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/ChefApiClientFactory.java
index c41142cc0..9a657c980 100644
--- a/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/ChefApiClientFactory.java
+++ b/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/chefclient/ChefApiClientFactory.java
@@ -41,6 +41,9 @@ public class ChefApiClientFactory {
private static final EELFLogger logger = EELFManager.getInstance().getLogger(ChefApiClientFactory.class);
+ private HttpClient httpClient = createChefHttpClient();
+ private ChefApiHeaderFactory chefApiHeaderFactory = new ChefApiHeaderFactory();
+
private HttpClient createChefHttpClient() {
String trustStoreFileName = "/opt/app/bvc/chef/chefServerSSL.jks";
char[] trustStoreCreds = "adminadmin".toCharArray();
@@ -56,9 +59,6 @@ public class ChefApiClientFactory {
return null;
}
- private HttpClient httpClient = createChefHttpClient();
- private ChefApiHeaderFactory chefApiHeaderFactory = new ChefApiHeaderFactory();
-
public ChefApiClient create(String endPoint, String organizations, String userId, String pemPath) {
return new ChefApiClientImpl(httpClient, endPoint, organizations, (methodName, requestPath, body) -> chefApiHeaderFactory
.create(methodName, requestPath, body, userId, organizations, pemPath));