do not go through the sfatables code, if the current rule list is empty
[sfa.git] / sfa / methods / list.py
index 0a3a8fc..4bd3496 100644 (file)
@@ -57,12 +57,17 @@ class list(Method):
         if registry_hrn != self.api.hrn:
             credential = self.api.getCredential()
             try:
-                record_list = registries[registry_hrn].list(credential, hrn, caller_cred=caller_cred)
-                records = [record.as_dict() for record in record_list]
-                if records:
-                    return records
+               request_hash=None
+                record_list = registries[registry_hrn].list(credential, hrn, request_hash, caller_cred)
+                records = [GeniRecord(dict=record).as_dict() for record in record_list]
             except:
-                pass
+                arg_list = [credential, hrn]
+                request_hash = self.api.key.compute_hash(arg_list)
+                record_list = registries[registry_hrn].list(credential, hrn, request_hash, caller_cred)
+                records = [GeniRecord(dict=record).as_dict() for record in record_list] 
+                
+        if records:
+            return records
 
         # if we still havnt found the record yet, try the local registry
         if not self.api.auth.hierarchy.auth_exists(hrn):