From: Cameron Dale Date: Sun, 9 Dec 2007 20:39:47 +0000 (-0800) Subject: Fix a callLater bug introduced in commit 6075497a. X-Git-Url: https://git.mxchange.org/?p=quix0rs-apt-p2p.git;a=commitdiff_plain;h=34dc704261e24a12e51ec92e360c5bba1c64b7ab Fix a callLater bug introduced in commit 6075497a. switched to callLater from callFromThread but forgot to include the delay of 0. --- diff --git a/khashmir.py b/khashmir.py index 2918036..0196fd2 100644 --- a/khashmir.py +++ b/khashmir.py @@ -322,7 +322,7 @@ class KhashmirWrite(KhashmirRead): pass response=_storedValueHandler action = StoreValue(self.table, key, value, response) - reactor.callLater(action.goWithNodes, nodes) + reactor.callLater(0, action.goWithNodes, nodes) # this call is asynch self.findNode(key, _storeValueForKey)