Coverity(phase 2)-CEW 561: Dead Code 97/14297/1
author36970 <jegan.s@tataelxsi.co.in>
Mon, 1 Apr 2024 16:56:07 +0000 (16:56 +0000)
committer36970 <jegan.s@tataelxsi.co.in>
Mon, 1 Apr 2024 16:56:19 +0000 (16:56 +0000)
Added fix for CWE 561: Dead Code(Logically dead code)

Change-Id: Idcc650b93feb013330f7fc4156104c6c311b751d
Signed-off-by: 36970 <jegan.s@tataelxsi.co.in>
osmclient/sol005/subscription.py

index d4860ac..e58ef63 100644 (file)
@@ -127,12 +127,10 @@ class Subscription(object):
                 "{}/{}".format(self._apiBase, subscription_id)
             )
             self._logger.debug(yaml.safe_dump(resp))
-            if resp:
-                return json.loads(resp)
             if not resp or "id" not in resp:
                 raise ClientException(
                     "failed to get subscription info: {}".format(resp)
                 )
-            return resp
+            return json.loads(resp)
         except NotFound:
             raise NotFound("subscription '{}' not found".format(subscription_id))