Change-Id: I8c9fd2d7c4a81723a41082ad5c06d7d1540fda1b
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
resp))
print resp['id']
else:
- msg = ""
+ msg = "Error {}".format(http_code)
if resp:
try:
- msg = json.loads(resp)
+ msg = "{} - {}".format(msg, json.loads(resp))
except ValueError:
- msg = resp
- raise ClientException("failed to create/update nsd - {}".format(name, msg))
+ msg = "{} - {}".format(msg, resp)
+ raise ClientException("failed to create/update nsd - {}".format(msg))
def update(self, name, filename):
nsd = self.get(name)
resp))
print resp['id']
else:
- msg = ""
+ msg = "Error {}".format(http_code)
if resp:
try:
- msg = json.loads(resp)
+ msg = "{} - {}".format(msg, json.loads(resp))
except ValueError:
- msg = resp
- raise ClientException("failed to create/update vnfd - {}".format(name, msg))
+ msg = "{} - {}".format(msg, resp)
+ raise ClientException("failed to create/update vnfd - {}".format(msg))
def update(self, name, filename):
vnfd = self.get(name)