[Zodb-checkins] SVN: ZODB/trunk/src/ZEO/ClientStorage.py Added missing close.

Jim Fulton jim at zope.com
Wed Oct 29 15:42:46 EDT 2008


Log message for revision 92681:
  Added missing close.
  

Changed:
  U   ZODB/trunk/src/ZEO/ClientStorage.py

-=-
Modified: ZODB/trunk/src/ZEO/ClientStorage.py
===================================================================
--- ZODB/trunk/src/ZEO/ClientStorage.py	2008-10-29 19:41:48 UTC (rev 92680)
+++ ZODB/trunk/src/ZEO/ClientStorage.py	2008-10-29 19:42:45 UTC (rev 92681)
@@ -419,6 +419,8 @@
         if self._cache is not None:
             self._cache.close()
             self._cache = None
+        if self._tfile is not None:
+            self._tfile.close()
 
     def registerDB(self, db):
         """Storage API: register a database for invalidation messages.



More information about the Zodb-checkins mailing list