Submitter | phabricator |
---|---|
Date | Oct. 16, 2017, 8:07 p.m. |
Message ID | <differential-rev-PHID-DREV-7j6ln4cn6g7vr7oxdqcp-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/25035/ |
State | Superseded |
Headers | show |
Comments
durin42 added a comment. I'm a bit worried that chg can't handle the typical argument pattern here... REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D1124 To: singhsrb, #hg-reviewers, quark Cc: durin42, mercurial-devel
singhsrb added a comment. @durin42: That's a valid concern and I am planning to look at the pattern handling code at some point. REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D1124 To: singhsrb, #hg-reviewers, quark, durin42 Cc: durin42, mercurial-devel
yuja added a comment.
In https://phab.mercurial-scm.org/D1124#18881, @singhsrb wrote:
> @durin42: That's a valid concern and I am planning to look at the pattern handling code at some point.
Maybe we should instead make `hg serve --daemon` work under commandserver.
Argument parsing in chg.c is merely a hack to get around Mercurial bugs.
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D1124
To: singhsrb, #hg-reviewers, quark, durin42
Cc: yuja, durin42, mercurial-devel
Patch
diff --git a/tests/test-hgweb-annotate-whitespace.t b/tests/test-hgweb-annotate-whitespace.t --- a/tests/test-hgweb-annotate-whitespace.t +++ b/tests/test-hgweb-annotate-whitespace.t @@ -76,7 +76,7 @@ $ hg serve -p $HGPORT -d --pid-file hg.pid $ cat hg.pid >> $DAEMON_PIDS - $ hg --config annotate.ignorews=true serve -p $HGPORT1 -d --pid-file hg.pid + $ hg serve --config annotate.ignorews=true -p $HGPORT1 -d --pid-file hg.pid $ cat hg.pid >> $DAEMON_PIDS $ cd ..