diff options
Diffstat (limited to 'catalog/pub/msapi/sdc.py')
-rw-r--r-- | catalog/pub/msapi/sdc.py | 2 |
1 files changed, 2 insertions, 0 deletions
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: |