comparison mercurial/shelve.py @ 45144:c93dd9d9f1e6

discovery: change users of `outgoing.missingheads` to `outgoing.ancestorsof` The attribute `missingheads` was recently renamed to `ancestorsof`, as it, despite the old name, doesn’t contain the missing heads but the changesets that were requested (including ancestors) for the outgoing operation. Changing all the users enables to print a warning if the old name is used. There is a good chance that some of the users are buggy because of the old name. Changing them to use the new name makes it more obvious that they are buggy. All users need to be reviewed for bugs. When sending patches for fixing them, the change will be more obvious without having to explain again and again the discrepancy of the old attribute name and what it actually contained.
author Manuel Jacob <me@manueljacob.de>
date Fri, 17 Jul 2020 09:20:48 +0200
parents b7808443ed6a
children e429e7c801b2
comparison
equal deleted inserted replaced
45143:5631b0116374 45144:c93dd9d9f1e6
160 compression = b'BZ' 160 compression = b'BZ'
161 161
162 repo = self.repo.unfiltered() 162 repo = self.repo.unfiltered()
163 163
164 outgoing = discovery.outgoing( 164 outgoing = discovery.outgoing(
165 repo, missingroots=bases, missingheads=[node] 165 repo, missingroots=bases, ancestorsof=[node]
166 ) 166 )
167 cg = changegroup.makechangegroup(repo, outgoing, cgversion, b'shelve') 167 cg = changegroup.makechangegroup(repo, outgoing, cgversion, b'shelve')
168 168
169 bundle2.writebundle( 169 bundle2.writebundle(
170 self.ui, cg, self.fname, btype, self.vfs, compression=compression 170 self.ui, cg, self.fname, btype, self.vfs, compression=compression