/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/transport/http/__init__.py

  • Committer: Robert Collins
  • Date: 2009-03-13 04:36:06 UTC
  • mfrom: (4105 +trunk)
  • mto: (4104.5.1 prepare-1.13)
  • mto: This revision was merged to the branch mainline in revision 4160.
  • Revision ID: robertc@robertcollins.net-20090313043606-7ibht1zuuhww2sn2
Cherrypick bugfixes from bzr.dev for 1.13:

4142: Fix performance regression (many small round-trips) when pushing to
a remote pack, and improve some tests.

4129: Fix bug when pushing stackable branch in unstackable repo to
default-stacking target.

4121: Remove __del__ from LockableFiles.

4117: Handle inconsistent inventories in fetch more robustly.

4105: Report network activity for bzr+ssh:// and bzr:// connections.

Show diffs side-by-side

added added

removed removed

Lines of Context:
622
622
            raise errors.SmartProtocolError(str(e))
623
623
        return body_filelike
624
624
 
 
625
    def _report_activity(self, bytes, direction):
 
626
        """See SmartMedium._report_activity.
 
627
 
 
628
        Does nothing; the underlying plain HTTP transport will report the
 
629
        activity that this medium would report.
 
630
        """
 
631
        pass
 
632
 
625
633
 
626
634
# TODO: May be better located in smart/medium.py with the other
627
635
# SmartMediumRequest classes