##// END OF EJS Templates
exchange: fix test for remote support of binary phases...
Boris Feld -
r34361:cd3f3971 default
parent child Browse files
Show More
@@ -1353,7 +1353,8 b' def _pullbundle2(pullop):'
1353
1353
1354 ui = pullop.repo.ui
1354 ui = pullop.repo.ui
1355 legacyphase = 'phases' in ui.configlist('devel', 'legacy.exchange')
1355 legacyphase = 'phases' in ui.configlist('devel', 'legacy.exchange')
1356 if (not legacyphase and 'heads' in pullop.remotebundle2caps.get('phases')):
1356 hasbinaryphase = 'heads' in pullop.remotebundle2caps.get('phases', ())
1357 if (not legacyphase and hasbinaryphase):
1357 kwargs['phases'] = True
1358 kwargs['phases'] = True
1358 pullop.stepsdone.add('phases')
1359 pullop.stepsdone.add('phases')
1359
1360
General Comments 0
You need to be logged in to leave comments. Login now