~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: 2009-03-08 21:32:56 UTC
  • mfrom: (4084.3.1 pack-repo.mutter)
  • Revision ID: pqm@pqm.ubuntu.com-20090308213256-h1hh8zwruuprz26c
(robertc) Log all the missing keys when a pack->pack copying
        operation fails due to missing keys. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
842
842
            if missing_text_keys:
843
843
                # TODO: raise a specific error that can handle many missing
844
844
                # keys.
 
845
                mutter("missing keys during fetch: %r", missing_text_keys)
845
846
                a_missing_key = missing_text_keys.pop()
846
847
                raise errors.RevisionNotPresent(a_missing_key[1],
847
848
                    a_missing_key[0])