comparison mercurial/configitems.py @ 34902:cc977ec0b8b9

config: also gather effect-flags on experimental.evolution Effect-flags config was in flight while the previous evolve config renaming was written. Now that both landed, gather effect-flags in experimental.evolution like the others evolve-related configurations. Differential Revision: https://phab.mercurial-scm.org/D1197
author Boris Feld <boris.feld@octobus.net>
date Thu, 19 Oct 2017 17:50:20 +0200
parents 6b77c13a1aab
children 645b6684cf5b
comparison
equal deleted inserted replaced
34901:ec765a71bd65 34902:cc977ec0b8b9
367 default=None, 367 default=None,
368 ) 368 )
369 coreconfigitem('experimental', 'evolution.createmarkers', 369 coreconfigitem('experimental', 'evolution.createmarkers',
370 default=None, 370 default=None,
371 ) 371 )
372 coreconfigitem('experimental', 'evolution.effect-flags',
373 default=False,
374 alias=[('experimental', 'effect-flags')]
375 )
372 coreconfigitem('experimental', 'evolution.exchange', 376 coreconfigitem('experimental', 'evolution.exchange',
373 default=None, 377 default=None,
374 ) 378 )
375 coreconfigitem('experimental', 'evolution.bundle-obsmarker', 379 coreconfigitem('experimental', 'evolution.bundle-obsmarker',
376 default=False, 380 default=False,
383 ) 387 )
384 coreconfigitem('experimental', 'mmapindexthreshold', 388 coreconfigitem('experimental', 'mmapindexthreshold',
385 default=None, 389 default=None,
386 ) 390 )
387 coreconfigitem('experimental', 'nonnormalparanoidcheck', 391 coreconfigitem('experimental', 'nonnormalparanoidcheck',
388 default=False,
389 )
390 coreconfigitem('experimental', 'effect-flags',
391 default=False, 392 default=False,
392 ) 393 )
393 coreconfigitem('experimental', 'exportableenviron', 394 coreconfigitem('experimental', 'exportableenviron',
394 default=list, 395 default=list,
395 ) 396 )