Copy attributes in addition of internal tags.
[sfa.git] / sfa / methods / resolve.py
index c1d8714..29e79b4 100644 (file)
@@ -60,12 +60,16 @@ class resolve(Method):
         if registry_hrn != self.api.hrn:
             credential = self.api.getCredential()
             try:
-                records = registries[registry_hrn].resolve(credential, hrn, caller_cred=caller_cred)
-                good_records = [record.as_dict() for record in records]
-                if good_records:
-                    return good_records
+                records = registries[registry_hrn].resolve(credential, hrn, caller_cred)
+                good_records = [GeniRecord(dict=record).as_dict() for record in records]
             except:
-                traceback.print_exc()
+                arg_list = [credential, hrn]
+                request_hash=self.api.key.compute_hash(arg_list)                
+                records = registries[registry_hrn].resolve(credential, hrn, request_hash, caller_cred)
+                good_records = [GeniRecord(dict=record).as_dict() for record in records]
+                
+        if good_records:
+            return good_records
 
         # if we still havnt found the record yet, try the local registry
         table = GeniTable()