Page MenuHomePhabricator

Work around `hg` echoing warnings to stdout under --debug
ClosedPublic

Authored by epriestley on Dec 18 2013, 1:41 AM.
Tags
None
Referenced Files
F18620171: D7784.diff
Sep 15 2025, 4:26 AM
F18593940: D7784.diff
Sep 12 2025, 4:29 PM
F18588456: D7784.diff
Sep 12 2025, 12:21 AM
F18464298: D7784.id.diff
Sep 2 2025, 3:53 AM
F18459022: D7784.diff
Sep 1 2025, 4:03 PM
F18004835: D7784.id17612.diff
Aug 2 2025, 12:47 PM
F17960512: D7784.id17610.diff
Aug 1 2025, 9:03 AM
F17940132: D7784.id.diff
Jul 31 2025, 3:55 AM
Subscribers

Details

Summary

Ref T615. Ref T4237. With --debug, Mercurial will echo an "ignoring untrusted configuration option" warning to stdout if .hgrc has the wrong owner.

However, we need --debug to make {parents} usable, at least until the patches I got into the upstream are widely deployed. So after getting --debug output, strip off any leading warnings.

These warnings should always be in English, at least, since we set LANG explicitly.

Test Plan

Unit tests. @asherkin, maybe you can confirm this? I can't actually get the warning, but I think my hg in PATH is just a bit out of date.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

Afraid this didn't work, although I think it did cut out one case (I only see 2 phantom commits, rather than the previous 4, but the branches box is still erroring).

Failed to parse 'hg branches' output: ignoring untrusted configuration option hooks.pretxnchangegroup.phabricator = '/var/www/phabricator/phabricator/bin/commit-hook' 'GW' 'pretxnchangegroup'
epriestley updated this revision to Unknown Object (????).Dec 18 2013, 1:59 AM
  • Be more aggressive about stripping these messages, as they can appear anywhere in output.

That did the job, thanks.