/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

  • Committer: Martin Pool
  • Date: 2008-11-27 07:25:52 UTC
  • mfrom: (3789.2.15 pack_retry_153786)
  • mto: This revision was merged to the branch mainline in revision 3865.
  • Revision ID: mbp@sourcefrog.net-20081127072552-st8jnmahi0iy3lrt
merge fix to retry when packs have change

Show diffs side-by-side

added added

removed removed

Lines of Context:
474
474
        self._reload_func = reload_func
475
475
        self.index_to_pack = {}
476
476
        self.combined_index = CombinedGraphIndex([], reload_func=reload_func)
477
 
        self.data_access = _DirectPackAccess(self.index_to_pack)
 
477
        self.data_access = _DirectPackAccess(self.index_to_pack,
 
478
                                             reload_func=reload_func)
478
479
        self.add_callback = None
479
480
 
480
481
    def replace_indices(self, index_to_pack, indices):