##// END OF EJS Templates
clfilter: ensure changegroup generation is run unfiltered...
Pierre-Yves David -
r17999:85027e98 default
parent child Browse files
Show More
@@ -2085,6 +2085,7 b' class localrepository(object):'
2085 return self.getlocalbundle(source,
2085 return self.getlocalbundle(source,
2086 discovery.outgoing(cl, common, heads))
2086 discovery.outgoing(cl, common, heads))
2087
2087
2088 @unfilteredmeth
2088 def _changegroupsubset(self, commonrevs, csets, heads, source):
2089 def _changegroupsubset(self, commonrevs, csets, heads, source):
2089
2090
2090 cl = self.changelog
2091 cl = self.changelog
@@ -2196,6 +2197,7 b' class localrepository(object):'
2196 # to avoid a race we use changegroupsubset() (issue1320)
2197 # to avoid a race we use changegroupsubset() (issue1320)
2197 return self.changegroupsubset(basenodes, self.heads(), source)
2198 return self.changegroupsubset(basenodes, self.heads(), source)
2198
2199
2200 @unfilteredmeth
2199 def _changegroup(self, nodes, source):
2201 def _changegroup(self, nodes, source):
2200 """Compute the changegroup of all nodes that we have that a recipient
2202 """Compute the changegroup of all nodes that we have that a recipient
2201 doesn't. Return a chunkbuffer object whose read() method will return
2203 doesn't. Return a chunkbuffer object whose read() method will return
General Comments 0
You need to be logged in to leave comments. Login now