[Zodb-checkins] CVS: ZODB3/ZEO - ClientStorage.py:1.73.2.16
Tim Peters
tim.one at comcast.net
Thu Jun 5 16:45:08 EDT 2003
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv20847
Modified Files:
Tag: ZODB3-3_1-branch
ClientStorage.py
Log Message:
tpc_finish(): Moved lock acquire into appropriate try block.
=== ZODB3/ZEO/ClientStorage.py 1.73.2.15 => 1.73.2.16 ===
--- ZODB3/ZEO/ClientStorage.py:1.73.2.15 Thu Jun 5 14:51:00 2003
+++ ZODB3/ZEO/ClientStorage.py Thu Jun 5 15:45:07 2003
@@ -777,8 +777,8 @@
"""Storage API: finish a transaction."""
if transaction is not self._transaction:
return
- self._lock.acquire()
try:
+ self._lock.acquire()
try:
if f is not None:
f()
More information about the Zodb-checkins
mailing list