From 34dc704261e24a12e51ec92e360c5bba1c64b7ab Mon Sep 17 00:00:00 2001 From: Cameron Dale Date: Sun, 9 Dec 2007 12:39:47 -0800 Subject: [PATCH] Fix a callLater bug introduced in commit 6075497a. switched to callLater from callFromThread but forgot to include the delay of 0. --- khashmir.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.2