##// END OF EJS Templates
phases: don't complain if cset is already public on pushkey (issue3230)
Matt Mackall -
r16051:2aa5b51f 2.1 stable
parent child Browse files
Show More
@@ -239,6 +239,9 b' def pushphase(repo, nhex, oldphasestr, n'
239 if currentphase == oldphase and newphase < oldphase:
239 if currentphase == oldphase and newphase < oldphase:
240 advanceboundary(repo, newphase, [bin(nhex)])
240 advanceboundary(repo, newphase, [bin(nhex)])
241 return 1
241 return 1
242 elif currentphase == newphase:
243 # raced, but got correct result
244 return 1
242 else:
245 else:
243 return 0
246 return 0
244 finally:
247 finally:
General Comments 0
You need to be logged in to leave comments. Login now