Browse Source

Fix leak when pack cache is rebuilt.

Damien Tournoud 11 năm trước cách đây
mục cha
commit
d10a3a0a4a
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      dulwich/object_store.py

+ 4 - 1
dulwich/object_store.py

@@ -303,7 +303,10 @@ class PackBasedObjectStore(BaseObjectStore):
     @property
     def packs(self):
         """List with pack objects."""
-        if self._pack_cache is None or self._pack_cache_stale():
+        if self._pack_cache is not None and self._pack_cache_stale():
+            self.close()
+
+        if self._pack_cache is None:
             self._pack_cache = self._load_packs()
         return self._pack_cache