~abentley/bzr/bzr-1.14

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-07 22:23:23 UTC
  • mfrom: (4246.1.3 bzr.1.14)
  • Revision ID: pqm@pqm.ubuntu.com-20090407222323-wj7suiz9p413eflm
(tanner) land brisbane-core in safest possible way (Vincent Ladeuil,
        Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
637
637
        return self._real_repository.abort_write_group(
638
638
            suppress_errors=suppress_errors)
639
639
 
 
640
    @property
 
641
    def chk_bytes(self):
 
642
        """Decorate the real repository for now.
 
643
 
 
644
        In the long term a full blown network facility is needed to avoid
 
645
        creating a real repository object locally.
 
646
        """
 
647
        self._ensure_real()
 
648
        return self._real_repository.chk_bytes
 
649
 
640
650
    def commit_write_group(self):
641
651
        """Complete a write group on the decorated repository.
642
652