Commit 4b822c41 authored by Jeremy Hylton's avatar Jeremy Hylton

Add band-aid for failing test.

parent a24313d6
......@@ -890,6 +890,11 @@ class ClientStorage:
"""
# Must be called with _lock already acquired.
# XXX not sure why _update_cache() would be called on
# a closed storage.
if self._cache is None:
return
self._cache.checkSize(self._tbuf.get_size())
try:
self._tbuf.begin_iterate()
......
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