Fix a callLater bug introduced in commit 6075497a.
authorCameron Dale <camrdale@gmail.com>
Sun, 9 Dec 2007 20:39:47 +0000 (12:39 -0800)
committerCameron Dale <camrdale@gmail.com>
Sun, 9 Dec 2007 20:39:47 +0000 (12:39 -0800)
switched to callLater from callFromThread but forgot to
include the delay of 0.

khashmir.py

index 291803685c5e3470519bcac6bf1b03c13ebc2d39..0196fd228a27342f2abf501a71d0eb74f1348c95 100644 (file)
@@ -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)