Rev 2129: Stub out RemoteRepository.gather_stats while its implemented in parallel. in file:///home/robertc/source/baz/hpss/

Robert Collins robertc at robertcollins.net
Sat Feb 3 10:57:28 GMT 2007


------------------------------------------------------------
revno: 2129
revision-id: robertc at robertcollins.net-20070203105720-wbxy8pkap13sdgq7
parent: robertc at robertcollins.net-20070203101104-obpia4s4zfq313nj
committer: Robert Collins <robertc at robertcollins.net>
branch nick: hpss
timestamp: Sat 2007-02-03 21:57:20 +1100
message:
  Stub out RemoteRepository.gather_stats while its implemented in parallel.
modified:
  bzrlib/remote.py               remote.py-20060720103555-yeeg2x51vn0rbtdp-1
=== modified file 'bzrlib/remote.py'
--- a/bzrlib/remote.py	2007-02-03 10:09:54 +0000
+++ b/bzrlib/remote.py	2007-02-03 10:57:20 +0000
@@ -203,6 +203,11 @@
         assert response[0] in ('ok', 'no'), 'unexpected response code %s' % (response,)
         return response[0] == 'ok'
 
+    def gather_stats(self, revid, committers=None):
+        """See Repository.gather_stats()."""
+        # SMART_SERVER_MERGE_BLOCKER
+        return self._real_repository.gather_stats(revid, committers)
+
     def get_physical_lock_status(self):
         """See Repository.get_physical_lock_status()."""
         return False



More information about the bazaar-commits mailing list