diff options
author | ottero <rodrigo.ottero@est.tech> | 2019-06-06 13:46:11 +0000 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-06-06 12:58:53 -0400 |
commit | 6c2ce9e3eee61fd9ec84594c0284f6d5b94fa925 (patch) | |
tree | a057758f064f70fed5655c4f4b589793decd0c07 /ms/controllerblueprints | |
parent | c0cbce93620b7ef1ceaf60d2496e3a84a140fd7e (diff) |
The restconf_client.py script uses BlueprintWebClientService to send
REST requests to ODL. When the methods of that interface have the type
of the returns changed from String to WebClientResponse, the script
stopped working.
This fix changes the way the response is manipulated, to act upon a
WebClientResponse and not on a String
Change-Id: I3876c5b27d65058f0b5b77da17f9225fc04779c6
Issue-ID: CCSDK-1384
Signed-off-by: ottero <rodrigo.ottero@est.tech>
Diffstat (limited to 'ms/controllerblueprints')
-rw-r--r-- | ms/controllerblueprints/application/pom.xml | 2 | ||||
-rwxr-xr-x | ms/controllerblueprints/distribution/pom.xml | 2 | ||||
-rw-r--r-- | ms/controllerblueprints/modules/blueprint-core/pom.xml | 2 | ||||
-rw-r--r-- | ms/controllerblueprints/modules/blueprint-scripts/pom.xml | 2 | ||||
-rw-r--r-- | ms/controllerblueprints/modules/blueprint-validation/pom.xml | 2 | ||||
-rw-r--r-- | ms/controllerblueprints/modules/db-resources/pom.xml | 2 | ||||
-rw-r--r-- | ms/controllerblueprints/modules/pom.xml | 2 | ||||
-rw-r--r-- | ms/controllerblueprints/modules/resource-dict/pom.xml | 2 | ||||
-rw-r--r-- | ms/controllerblueprints/modules/service/pom.xml | 2 | ||||
-rw-r--r-- | ms/controllerblueprints/parent/pom.xml | 2 | ||||
-rw-r--r-- | ms/controllerblueprints/pom.xml | 4 |
11 files changed, 12 insertions, 12 deletions
diff --git a/ms/controllerblueprints/application/pom.xml b/ms/controllerblueprints/application/pom.xml index e2515ad34..3789244e5 100644 --- a/ms/controllerblueprints/application/pom.xml +++ b/ms/controllerblueprints/application/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId> <artifactId>parent</artifactId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> <relativePath>../parent</relativePath> </parent> <artifactId>application</artifactId> diff --git a/ms/controllerblueprints/distribution/pom.xml b/ms/controllerblueprints/distribution/pom.xml index 0cde2a842..d315b282c 100755 --- a/ms/controllerblueprints/distribution/pom.xml +++ b/ms/controllerblueprints/distribution/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId> <artifactId>parent</artifactId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> <relativePath>../parent</relativePath> </parent> <artifactId>distribution</artifactId> diff --git a/ms/controllerblueprints/modules/blueprint-core/pom.xml b/ms/controllerblueprints/modules/blueprint-core/pom.xml index b57021a72..2abad285b 100644 --- a/ms/controllerblueprints/modules/blueprint-core/pom.xml +++ b/ms/controllerblueprints/modules/blueprint-core/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId> <artifactId>modules</artifactId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> </parent> <artifactId>blueprint-core</artifactId> <name>Controller Blueprints Core</name> diff --git a/ms/controllerblueprints/modules/blueprint-scripts/pom.xml b/ms/controllerblueprints/modules/blueprint-scripts/pom.xml index 83046037b..65d692f31 100644 --- a/ms/controllerblueprints/modules/blueprint-scripts/pom.xml +++ b/ms/controllerblueprints/modules/blueprint-scripts/pom.xml @@ -18,7 +18,7 @@ <parent> <artifactId>modules</artifactId> <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>blueprint-scripts</artifactId> diff --git a/ms/controllerblueprints/modules/blueprint-validation/pom.xml b/ms/controllerblueprints/modules/blueprint-validation/pom.xml index 3c3dd872b..02d25075a 100644 --- a/ms/controllerblueprints/modules/blueprint-validation/pom.xml +++ b/ms/controllerblueprints/modules/blueprint-validation/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId> <artifactId>modules</artifactId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> </parent> <artifactId>blueprint-validation</artifactId> <name>Controller Blueprints Validation Service</name> diff --git a/ms/controllerblueprints/modules/db-resources/pom.xml b/ms/controllerblueprints/modules/db-resources/pom.xml index 4ed7dfd02..d3d48fabe 100644 --- a/ms/controllerblueprints/modules/db-resources/pom.xml +++ b/ms/controllerblueprints/modules/db-resources/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId> <artifactId>modules</artifactId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> </parent> <artifactId>db-resources</artifactId> <name>Controller Blueprints DB Resources</name> diff --git a/ms/controllerblueprints/modules/pom.xml b/ms/controllerblueprints/modules/pom.xml index 7600eb8ea..8039fcb8d 100644 --- a/ms/controllerblueprints/modules/pom.xml +++ b/ms/controllerblueprints/modules/pom.xml @@ -20,7 +20,7 @@ <parent> <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId> <artifactId>parent</artifactId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> <relativePath>../parent</relativePath> </parent> <artifactId>modules</artifactId> diff --git a/ms/controllerblueprints/modules/resource-dict/pom.xml b/ms/controllerblueprints/modules/resource-dict/pom.xml index e497ac30f..425c8ee34 100644 --- a/ms/controllerblueprints/modules/resource-dict/pom.xml +++ b/ms/controllerblueprints/modules/resource-dict/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId> <artifactId>modules</artifactId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> </parent> <artifactId>resource-dict</artifactId> <name>Controller Blueprints Resource Dictionary</name> diff --git a/ms/controllerblueprints/modules/service/pom.xml b/ms/controllerblueprints/modules/service/pom.xml index 400aa6799..41e7515a9 100644 --- a/ms/controllerblueprints/modules/service/pom.xml +++ b/ms/controllerblueprints/modules/service/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId> <artifactId>modules</artifactId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> </parent> <artifactId>service</artifactId> <name>Controller Blueprints Service</name> diff --git a/ms/controllerblueprints/parent/pom.xml b/ms/controllerblueprints/parent/pom.xml index 1dd4ca6a7..4b920181d 100644 --- a/ms/controllerblueprints/parent/pom.xml +++ b/ms/controllerblueprints/parent/pom.xml @@ -21,7 +21,7 @@ <parent> <groupId>org.onap.ccsdk.cds</groupId> <artifactId>controllerblueprints</artifactId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> </parent> <groupId>org.onap.ccsdk.cds.controllerblueprints</groupId> <artifactId>parent</artifactId> diff --git a/ms/controllerblueprints/pom.xml b/ms/controllerblueprints/pom.xml index c579c9668..b9148449a 100644 --- a/ms/controllerblueprints/pom.xml +++ b/ms/controllerblueprints/pom.xml @@ -18,13 +18,13 @@ <parent> <groupId>org.onap.ccsdk.cds</groupId> <artifactId>ms</artifactId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> <relativePath>..</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>controllerblueprints</artifactId> <name>Controller Blueprints Root</name> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> <properties> <service.name>ControllerBlueprints</service.name> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |