From 1f888ad5e1553f500926e35a0893519432cd94cd Mon Sep 17 00:00:00 2001 From: Mark Huang Date: Fri, 15 Dec 2006 18:40:21 +0000 Subject: [PATCH] - no need to pass auth struct, Peer now signs calls automatically --- PLC/Cache.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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() -- 2.43.0