first call is without request hash
authorAnil-Kumar Vengalil <Anil-Kumar.Vengalil@sophia.inria.fr>
Sun, 15 Nov 2009 18:33:35 +0000 (18:33 +0000)
committerAnil-Kumar Vengalil <Anil-Kumar.Vengalil@sophia.inria.fr>
Sun, 15 Nov 2009 18:33:35 +0000 (18:33 +0000)
sfa/methods/resolve.py

index 29e79b4..602e5a1 100644 (file)
@@ -60,7 +60,8 @@ class resolve(Method):
         if registry_hrn != self.api.hrn:
             credential = self.api.getCredential()
             try:
-                records = registries[registry_hrn].resolve(credential, hrn, caller_cred)
+               request_hash=None
+                records = registries[registry_hrn].resolve(credential, hrn, request_hash, caller_cred)
                 good_records = [GeniRecord(dict=record).as_dict() for record in records]
             except:
                 arg_list = [credential, hrn]