~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Martin Pool
  • Date: 2009-06-19 09:06:56 UTC
  • mfrom: (4463 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4464.
  • Revision ID: mbp@sourcefrog.net-20090619090656-d5weqeecyscv8kqp
merge news

Show diffs side-by-side

added added

removed removed

Lines of Context:
566
566
        return self._creating_repo._real_repository._format.network_name()
567
567
 
568
568
    @property
569
 
    def pack_compresses(self):
570
 
        self._ensure_real()
571
 
        return self._custom_format.pack_compresses
572
 
 
573
 
    @property
574
569
    def _serializer(self):
575
570
        self._ensure_real()
576
571
        return self._custom_format._serializer
723
718
        invocation. If in doubt chat to the bzr network team.
724
719
        """
725
720
        if self._real_repository is None:
726
 
            if 'hpssvfs' in debug.debug_flags:
 
721
            if 'hpss' in debug.debug_flags:
727
722
                import traceback
728
723
                warning('VFS Repository access triggered\n%s',
729
724
                    ''.join(traceback.format_stack()))
1496
1491
        return self._real_repository.inventories
1497
1492
 
1498
1493
    @needs_write_lock
1499
 
    def pack(self, hint=None):
 
1494
    def pack(self):
1500
1495
        """Compress the data within the repository.
1501
1496
 
1502
1497
        This is not currently implemented within the smart server.
1503
1498
        """
1504
1499
        self._ensure_real()
1505
 
        return self._real_repository.pack(hint=hint)
 
1500
        return self._real_repository.pack()
1506
1501
 
1507
1502
    @property
1508
1503
    def revisions(self):