<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Patch-Source: http://patch-tracker.debian.org/patch/series/view/bzr-fastimport/0.13.0-4/disable-known-graph-feature.patch

Description: Disable know graph feature.
 repo.get_known_graph_ancestry() can't be called while in the middle of a write
 group. Otherwise bzr will crash with: 'BTreeBuilder' object has no attribute
 '_find_ancestors'.
Author: Felipe Contreras &lt;felipe.contreras@gmail.com&gt;
Bug: https://launchpad.net/bugs/541626
Bug-Ubuntu: https://launchpad.net/bugs/541626

--- a/revision_store.py
+++ b/revision_store.py
@@ -170,7 +170,7 @@
         """
         self.repo = repo
         self._graph = None
-        self._use_known_graph = True
+        self._use_known_graph = False
         self._supports_chks = getattr(repo._format, 'supports_chks', False)
 
     def expects_rich_root(self):
</pre></body></html>