Merge lp:~jelmer/bzr/hpss-remote-repository into lp:bzr

Proposed by Jelmer Vernooij
Status: Merged
Approved by: Martin Packman
Approved revision: no longer in the source branch.
Merged at revision: 6290
Proposed branch: lp:~jelmer/bzr/hpss-remote-repository
Merge into: lp:bzr
Diff against target: 14 lines (+2/-2)
1 file modified
bzrlib/remote.py (+2/-2)
To merge this branch: bzr merge lp:~jelmer/bzr/hpss-remote-repository
Reviewer Review Type Date Requested Status
Martin Packman (community) Approve
Review via email: mp+83320@code.launchpad.net

Commit message

Add Repository as base class for RemoteRepository.

Description of the change

Make Repository a base class of RemoteRepository.

To post a comment you must log in.
Revision history for this message
Martin Packman (gz) wrote :

You want to follow Martin Pool's plan from the bug to send it to PQM and see what tests fail? :)

Would be nice if this meant some code could actually be shared between the classes, rather than just being cosmetic.

review: Approve
Revision history for this message
Jelmer Vernooij (jelmer) wrote :

sent to pqm by email

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'bzrlib/remote.py'
--- bzrlib/remote.py 2011-11-22 11:48:31 +0000
+++ bzrlib/remote.py 2011-11-24 16:14:05 +0000
@@ -992,8 +992,8 @@
992 return self._custom_format._serializer992 return self._custom_format._serializer
993993
994994
995class RemoteRepository(_RpcHelper, lock._RelockDebugMixin,995class RemoteRepository(_mod_repository.Repository, _RpcHelper,
996 controldir.ControlComponent):996 lock._RelockDebugMixin):
997 """Repository accessed over rpc.997 """Repository accessed over rpc.
998998
999 For the moment most operations are performed using local transport-backed999 For the moment most operations are performed using local transport-backed