##// END OF EJS Templates
bundle2: no longer use 'retractboundary' in updatephases...
Boris Feld -
r33409:50243c97 default
parent child Browse files
Show More
@@ -448,10 +448,6 b' def subsetphaseheads(repo, subset):'
448
448
449 def updatephases(repo, tr, headsbyphase, addednodes):
449 def updatephases(repo, tr, headsbyphase, addednodes):
450 """Updates the repo with the given phase heads"""
450 """Updates the repo with the given phase heads"""
451 # First make all the added revisions secret because changegroup.apply()
452 # currently sets the phase to draft.
453 retractboundary(repo, tr, secret, addednodes)
454
455 # Now advance phase boundaries of all but secret phase
451 # Now advance phase boundaries of all but secret phase
456 for phase in allphases[:-1]:
452 for phase in allphases[:-1]:
457 advanceboundary(repo, tr, phase, headsbyphase[phase])
453 advanceboundary(repo, tr, phase, headsbyphase[phase])
General Comments 0
You need to be logged in to leave comments. Login now