[Zodb-checkins] CVS: ZODB3/ZEO - ClientStorage.py:1.73.2.11

Barry Warsaw barry@wooz.org
Mon, 27 Jan 2003 17:29:00 -0500


Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv2785

Modified Files:
      Tag: ZODB3-3_1-branch
	ClientStorage.py 
Log Message:
tpc_begin(): Clear self._tbuf at the same time we clear self._seriald
so we're consistent with the cleanup that tpc_abort() does.


=== ZODB3/ZEO/ClientStorage.py 1.73.2.10 => 1.73.2.11 ===
--- ZODB3/ZEO/ClientStorage.py:1.73.2.10	Mon Jan 20 16:02:17 2003
+++ ZODB3/ZEO/ClientStorage.py	Mon Jan 27 17:28:57 2003
@@ -635,6 +635,7 @@
             raise
 
         self._serial = id
+        self._tbuf.clear()
         self._seriald.clear()
         del self._serials[:]