From: Cameron Dale Date: Sat, 8 Mar 2008 00:06:57 +0000 (-0800) Subject: Add new node to table when refreshing old node. X-Git-Url: https://git.mxchange.org/?p=quix0rs-apt-p2p.git;a=commitdiff_plain;h=c8e3717344600f6a0acd71b67fc37c67c5f7d5d3 Add new node to table when refreshing old node. Fixes a bug introduced by commit: 6ce38471: fix peer update problem connection refused in store value --- diff --git a/apt_p2p_Khashmir/ktable.py b/apt_p2p_Khashmir/ktable.py index fb0c371..fe117ee 100644 --- a/apt_p2p_Khashmir/ktable.py +++ b/apt_p2p_Khashmir/ktable.py @@ -169,11 +169,10 @@ class KTable: # It responded, so update it node.updateLastSeen() # move node to end of bucket - xnode = self.buckets[i].l[it] del(self.buckets[i].l[it]) # note that we removed the original and replaced it with the new one # utilizing this nodes new contact info - self.buckets[i].l.append(xnode) + self.buckets[i].l.append(node) self.buckets[i].touch() return