~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to repofmt.py

  • Committer: John Arbash Meinel
  • Date: 2009-02-25 23:04:22 UTC
  • mto: (0.22.4 experimental)
  • mto: This revision was merged to the branch mainline in revision 4280.
  • Revision ID: john@arbash-meinel.com-20090225230422-4oigw03k7fq62eyb
Setting _fetch_order='topological' gives sub-optimal ordering for gc=>gc fetches.
This is because the 'autopack' code will convert to 'gc-optimal',
which means that 'unordered' will then continue the 'gc-optimal' route.

Show diffs side-by-side

added added

removed removed

Lines of Context:
405
405
        #       because the source can be smart about extracting multiple
406
406
        #       in-a-row (and sharing strings). Topological is better for
407
407
        #       remote, because we access less data.
408
 
        self._fetch_order = 'topological'
 
408
        self._fetch_order = 'unordered'
409
409
        self._fetch_gc_optimal = True
410
410
        self._fetch_uses_deltas = False
411
411
 
469
469
            self._reconcile_does_inventory_gc = True
470
470
            self._reconcile_fixes_text_parents = True
471
471
            self._reconcile_backsup_inventory = False
472
 
            self._fetch_order = 'topological'
 
472
            self._fetch_order = 'unordered'
473
473
            self._fetch_gc_optimal = True
474
474
            self._fetch_uses_deltas = False
475
475