comparison hgsubversion/svnrepo.py @ 1580:0d18108ec153

hgsubversion: fix something which looks like a cycle Motivated from av6 fixes in topic extension on cycles and our internal servers consuming a lot of memory, I found this.
author Pulkit Goyal <pulkit@yandex-team.ru>
date Fri, 03 Aug 2018 21:08:37 +0530
parents f8ca09a97492
children f778fdd82c83 6cc986fee28e
comparison
equal deleted inserted replaced
1579:4830089aee58 1580:0d18108ec153
113 def pull(self, remote, heads=[], force=False): 113 def pull(self, remote, heads=[], force=False):
114 return wrappers.pull(self, remote, heads, force) 114 return wrappers.pull(self, remote, heads, force)
115 115
116 @remotesvn 116 @remotesvn
117 def findoutgoing(self, remote, base=None, heads=None, force=False): 117 def findoutgoing(self, remote, base=None, heads=None, force=False):
118 return wrappers.findoutgoing(repo, remote, heads, force) 118 return wrappers.findoutgoing(self, remote, heads, force)
119 119
120 def svnmeta(self, uuid=None, subdir=None, skiperrorcheck=False): 120 def svnmeta(self, uuid=None, subdir=None, skiperrorcheck=False):
121 return svnmeta.SVNMeta(self, uuid, subdir, skiperrorcheck) 121 return svnmeta.SVNMeta(self, uuid, subdir, skiperrorcheck)
122 122
123 repo.__class__ = svnlocalrepo 123 repo.__class__ = svnlocalrepo