From 333003cc2fb25dff5d2b50b262f42d0eb72b1981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Wisniewski?= <gregory@nexedi.com> Date: Fri, 5 Feb 2010 14:38:41 +0000 Subject: [PATCH] Revert "There is at most one iteration that match, break when found." This reverts commit r1630. git-svn-id: https://svn.erp5.org/repos/neo/trunk@1643 71dcc9de-d417-0410-9af5-da40c76e7ee4 --- neo/storage/handlers/client.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/neo/storage/handlers/client.py b/neo/storage/handlers/client.py index 732a5503..b27c0847 100644 --- a/neo/storage/handlers/client.py +++ b/neo/storage/handlers/client.py @@ -79,9 +79,8 @@ class ClientOperationHandler(BaseClientAndStorageOperationHandler): except KeyError: pass del app.transaction_dict[tid] - # Now it may be possible to execute some events. - app.executeQueuedEvents() - break + # Now it may be possible to execute some events. + app.executeQueuedEvents() def timeoutExpired(self, conn): self.dealWithClientFailure(conn.getUUID()) -- 2.30.9