summaryrefslogtreecommitdiff
path: root/devel/bzr-fastimport/files/patch-disable-known-graph
diff options
context:
space:
mode:
Diffstat (limited to 'devel/bzr-fastimport/files/patch-disable-known-graph')
-rw-r--r--devel/bzr-fastimport/files/patch-disable-known-graph19
1 files changed, 0 insertions, 19 deletions
diff --git a/devel/bzr-fastimport/files/patch-disable-known-graph b/devel/bzr-fastimport/files/patch-disable-known-graph
deleted file mode 100644
index 61f8c3a112a1..000000000000
--- a/devel/bzr-fastimport/files/patch-disable-known-graph
+++ /dev/null
@@ -1,19 +0,0 @@
-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 <felipe.contreras@gmail.com>
-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):