summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/scripts/sdcBePy/common
diff options
context:
space:
mode:
authordavsad <david.sadlier@est.tech>2021-09-01 07:57:45 +0100
committerMichael Morris <michael.morris@est.tech>2021-09-10 14:01:15 +0000
commita6fd5e3c0145b6d7fe3d9e77dd2a3d8ba98774b4 (patch)
treee4d8aa4b145f8ee580b7614bbdb2715213417dcd /catalog-be/src/main/resources/scripts/sdcBePy/common
parent009d2b3cfe2d27abd79f47aa076849786327654a (diff)
ETSI SOL001 v2.5.1 model types not deployed in upgrade
Issue-ID: SDC-3707 Signed-off-by: davsad <david.sadlier@est.tech> Change-Id: If1bda517a9295ad380bf4e5e2fc35f15a1ff708e
Diffstat (limited to 'catalog-be/src/main/resources/scripts/sdcBePy/common')
-rwxr-xr-xcatalog-be/src/main/resources/scripts/sdcBePy/common/sdcBeProxy.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/catalog-be/src/main/resources/scripts/sdcBePy/common/sdcBeProxy.py b/catalog-be/src/main/resources/scripts/sdcBePy/common/sdcBeProxy.py
index 0c71a382d1..ecd07264b4 100755
--- a/catalog-be/src/main/resources/scripts/sdcBePy/common/sdcBeProxy.py
+++ b/catalog-be/src/main/resources/scripts/sdcBePy/common/sdcBeProxy.py
@@ -5,7 +5,6 @@ import pycurl
from sdcBePy.common.helpers import check_arguments_not_none
-
def get_url(ip, port, protocol):
return "%s://%s:%s" % (protocol, ip, port)
@@ -55,6 +54,9 @@ class SdcBeProxy:
def get_normatives(self):
return self.con.get("/sdc2/rest/v1/screen", with_buffer=True)
+ def get_model_list(self):
+ return self.con.get("/sdc2/rest/v1/catalog/model", with_buffer=True)
+
def post_file(self, path, multi_part_form_data, buffer=None):
return self.con.post_file(path, multi_part_form_data, buffer)
@@ -67,8 +69,7 @@ class SdcBeProxy:
self.con.buffer.seek(0)
response = value.decode(self.CHARTSET).split(self.BODY_SEPARATOR)
- return response[1] if len(response) == 2 else response[0]
-
+ return response[len(response) - 1] if len(response) > 1 else response[0]
class CurlConnector:
CONTENT_TYPE_HEADER = "Content-Type: application/json"