##// END OF EJS Templates
discovery: ensure that missingheads are always heads of everything we tried...
Pierre-Yves David -
r15955:5a14f48d stable
parent child Browse files
Show More
@@ -124,8 +124,7 b' def findcommonoutgoing(repo, other, only'
124 124 missing.append(node)
125 125 if excluded:
126 126 # update missing heads
127 rset = repo.set('heads(%ln)', missing)
128 missingheads = [ctx.node() for ctx in rset]
127 missingheads = phases.newheads(repo, onlyheads, excluded)
129 128 else:
130 129 missingheads = onlyheads
131 130 og.missingheads = missingheads
General Comments 0
You need to be logged in to leave comments. Login now