X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=catalog%2Fpub%2Fmsapi%2Fsdc.py;h=4b50aab424b9698f8adcf574ee5b771457a746c9;hb=f96008008bcbefd4142611c9ecca45899c5bb7d6;hp=bb473cc0bbf2f1d766f7d4f7d166c13ea6f070e3;hpb=06bfcce3f57176e6b428e43e8e411e245a5fa75e;p=modeling%2Fetsicatalog.git diff --git a/catalog/pub/msapi/sdc.py b/catalog/pub/msapi/sdc.py index bb473cc..4b50aab 100644 --- a/catalog/pub/msapi/sdc.py +++ b/catalog/pub/msapi/sdc.py @@ -90,6 +90,8 @@ def get_asset(asset_type, uuid): logger.error("Status code is %s, detail is %s.", ret[2], ret[1]) raise CatalogException("Failed to get asset(%s, %s) from sdc." % (asset_type, uuid)) asset = json.JSONDecoder().decode(ret[1]) + if len(asset) == 0: + raise CatalogException("Failed to get asset(%s, %s) from sdc." % (asset_type, uuid)) if asset.get("distributionStatus", None) != DISTRIBUTED: raise CatalogException("The asset (%s,%s) is not distributed from sdc." % (asset_type, uuid)) else: