# HG changeset patch # User Boris Feld # Date 1542735864 0 # Node ID 380a1f73830f0ac5925bf8a20c8c302df2176514 # Parent 82c189c511bdef7d018c2e48e0184b9462cd3384 perf: disable revlogs clearing in `perftags` by default This aligns things with what `perfbookmarks` does. I decided to disable the revlogs clearing by default to focus on the core logic by default, ignoring side effects. If we prefer to emphasize the side effect, we can instead keep this on in `perftags` and enable it by default in `perfbookmarks`. diff -r 82c189c511bd -r 380a1f73830f contrib/perf.py --- a/contrib/perf.py Tue Nov 20 10:55:20 2018 +0000 +++ b/contrib/perf.py Tue Nov 20 17:44:24 2018 +0000 @@ -540,7 +540,7 @@ @command(b'perftags', formatteropts+ [ - (b'', b'clear-revlogs', True, b'refresh changelog and manifest'), + (b'', b'clear-revlogs', False, b'refresh changelog and manifest'), ]) def perftags(ui, repo, **opts): opts = _byteskwargs(opts)