diff options
author | Ram Krishna Verma <ram.krishna.verma@est.tech> | 2019-07-01 15:21:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-01 15:21:39 +0000 |
commit | 3e60ff607e30e020d5909bf23bf571504e635c23 (patch) | |
tree | 6bd79f227891bf13ec3a5c7b03c8546254771fe3 /examples/examples-onap-bbs/src/main/resources/logic/AAIServiceCreateTask.js | |
parent | 5052634e60545f5b483660700d47eb4fff5d0d38 (diff) | |
parent | f08984b16abf954b7b351f21a3822e21d9d4f7c2 (diff) |
Merge "Fix issues from Checkstyle reviews"
Diffstat (limited to 'examples/examples-onap-bbs/src/main/resources/logic/AAIServiceCreateTask.js')
-rw-r--r-- | examples/examples-onap-bbs/src/main/resources/logic/AAIServiceCreateTask.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/examples-onap-bbs/src/main/resources/logic/AAIServiceCreateTask.js b/examples/examples-onap-bbs/src/main/resources/logic/AAIServiceCreateTask.js index 7e116f0ea..a7809bf1b 100644 --- a/examples/examples-onap-bbs/src/main/resources/logic/AAIServiceCreateTask.js +++ b/examples/examples-onap-bbs/src/main/resources/logic/AAIServiceCreateTask.js @@ -78,7 +78,7 @@ try { executor.logger.info("Query url" + urlGet); - result = client.httpRequest(urlGet, "GET", null, AAI_USERNAME, AAI_PASSWORD, "application/json", true); + result = client.httpRequest(urlGet, "GET", null, AAI_USERNAME, AAI_PASSWORD, "application/json"); executor.logger.info("Data received From " + urlGet + " " + result); jsonObj = JSON.parse(result); @@ -110,7 +110,7 @@ try { executor.logger.info("ready to putAfter Parse " + JSON.stringify(putUpddateServInstance, null, 4)); var urlPut = HTTP_PROTOCOL + AAI_URL + putUrl + "?resource_version=" + resource_version; result = client.httpRequest(urlPut, "PUT", JSON.stringify(putUpddateServInstance), AAI_USERNAME, AAI_PASSWORD, - "application/json", true); + "application/json"); executor.logger.info("Data received From " + urlPut + " " + result); /* If failure to retrieve data proceed to Failure */ if (result != "") { |