/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/fetch.py

  • Committer: Martin Pool
  • Date: 2006-06-10 23:16:19 UTC
  • mfrom: (1759 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1761.
  • Revision ID: mbp@sourcefrog.net-20060610231619-05b997deeb005d02
[merge] bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
                    self.from_repository.get_transaction())
170
170
                # we fetch all the texts, because texts do
171
171
                # not reference anything, and its cheap enough
172
 
                to_weave.join(from_weave, version_ids=required_versions)
 
172
                to_weave.join(from_weave, version_ids=required_versions) 
 
173
                # we dont need *all* of this data anymore, but we dont know
 
174
                # what we do. This cache clearing will result in a new read 
 
175
                # of the knit data when we do the checkout, but probably we
 
176
                # want to emit the needed data on the fly rather than at the
 
177
                # end anyhow.
 
178
                # the from weave should know not to cache data being joined,
 
179
                # but its ok to ask it to clear.
 
180
                from_weave.clear_cache()
 
181
                to_weave.clear_cache()
173
182
        finally:
174
183
            texts_pb.finished()
175
184