woraround for undefined 'options' in checkCredentials
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 26 May 2014 09:48:06 +0000 (11:48 +0200)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 26 May 2014 09:48:06 +0000 (11:48 +0200)
sfa/trust/auth.py

index 65ce3fc..0b4d337 100644 (file)
@@ -70,7 +70,10 @@ class Auth:
         error=[None,None]
 
         # if speaks for gid matches caller cert then we've found a valid
-        # speaks for credential      
+        # speaks for credential
+        ### Thierry : we have no options to pass determine_speaks_for in this context
+        # so only as a workaround here:
+        options={}
         speaks_for_gid = determine_speaks_for(logger, creds, self.peer_cert, \
                                               options, self.trusted_cert_list)