~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-29 05:04:00 UTC
  • mfrom: (2947.1.3 pack)
  • Revision ID: pqm@pqm.ubuntu.com-20071029050400-j2jmz8smj2yecfrr
(robertc) Fix pack-repository to support get_parents calls as the first call on a repository, and fix full-branch push/pull performance to not suck terribly. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
617
617
        if self._new_pack is not None:
618
618
            raise errors.BzrError('call to create_pack_from_packs while '
619
619
                'another pack is being written.')
620
 
        if revision_ids is not None and len(revision_ids) == 0:
621
 
            # silly fetch request.
622
 
            return None
 
620
        if revision_ids is not None:
 
621
            if len(revision_ids) == 0:
 
622
                # silly fetch request.
 
623
                return None
 
624
            else:
 
625
                revision_ids = frozenset(revision_ids)
623
626
        new_pack = NewPack(self._upload_transport, self._index_transport,
624
627
            self._pack_transport, upload_suffix=suffix)
625
628
        # buffer data - we won't be reading-back during the pack creation and
1440
1443
        This implementation accesses the combined revision index to provide
1441
1444
        answers.
1442
1445
        """
 
1446
        self._pack_collection.ensure_loaded()
1443
1447
        index = self._pack_collection.revision_index.combined_index
1444
1448
        search_keys = set()
1445
1449
        for revision_id in revision_ids: