From: Mark Huang Date: Fri, 15 Dec 2006 18:40:21 +0000 (+0000) Subject: - no need to pass auth struct, Peer now signs calls automatically X-Git-Tag: pycurl-7_13_1~193 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=1f888ad5e1553f500926e35a0893519432cd94cd;p=plcapi.git - no need to pass auth struct, Peer now signs calls automatically --- diff --git a/PLC/Cache.py b/PLC/Cache.py index 5a64a2a..21b8950 100644 --- a/PLC/Cache.py +++ b/PLC/Cache.py @@ -59,12 +59,11 @@ class Cache: Of course the timers field was introduced for optimization and could safely be removed """ - def __init__ (self, api, peer_id, peer_server, auth): + def __init__ (self, api, peer_id, peer_server): self.api = api self.peer_id = peer_id self.peer_server = peer_server - self.auth = auth class Transcoder: @@ -430,7 +429,7 @@ class Cache: timers={} t_start=time.time() # xxx see also GetPeerData - peer_id arg unused yet - all_data = self.peer_server.GetPeerData (self.auth,self.api.config.PLC_NAME) + all_data = self.peer_server.GetPeerData (self.api.config.PLC_NAME) verbose ('Passed GetPeerData the name',self.api.config.PLC_NAME) sks=all_data.keys()