Commit 2c6e83c3 authored by Jim Fulton's avatar Jim Fulton

Added missing close.

parent 39452f53
...@@ -419,6 +419,8 @@ class ClientStorage(object): ...@@ -419,6 +419,8 @@ class ClientStorage(object):
if self._cache is not None: if self._cache is not None:
self._cache.close() self._cache.close()
self._cache = None self._cache = None
if self._tfile is not None:
self._tfile.close()
def registerDB(self, db): def registerDB(self, db):
"""Storage API: register a database for invalidation messages. """Storage API: register a database for invalidation messages.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment