]> git.mxchange.org Git - quix0rs-apt-p2p.git/commitdiff
Always return the result at the end of a callback function.
authorCameron Dale <camrdale@gmail.com>
Sat, 10 May 2008 06:58:32 +0000 (23:58 -0700)
committerCameron Dale <camrdale@gmail.com>
Sat, 10 May 2008 06:58:32 +0000 (23:58 -0700)
apt_p2p_Khashmir/khashmir.py

index 54951b7e5719093b53d614c857af7846245643ad..394d75e42fa6af2188db8d07c10d6f8d0a63510c 100644 (file)
@@ -232,6 +232,7 @@ class KhashmirBase(protocol.Factory):
                 if newnode.id not in self.pinging:
                     self.pinging[newnode.id] = reactor.callLater(self.config['MIN_PING_INTERVAL'],
                                                                  self.sendPing, newnode)
+                return newnode
             df.addCallback(rePing)
 
     def _staleNodeHandler(self, err, old, node, contacted):