##// END OF EJS Templates
lfs: enable workers by default...
Matt Harbison -
r44747:87167caa default
parent child Browse files
Show More
@@ -38,9 +38,6 b' ruled out) prior to taking off the exper'
38
38
39 * `hg diff` is similar, and probably shouldn't see the pointer file
39 * `hg diff` is similar, and probably shouldn't see the pointer file
40
40
41 #. `Fix https multiplexing, and re-enable workers
42 <https://www.mercurial-scm.org/pipermail/mercurial-devel/2018-January/109916.html>`_.
43
44 #. Show to-be-applied rules with `hg files -r 'wdir()' 'set:lfs()'`
41 #. Show to-be-applied rules with `hg files -r 'wdir()' 'set:lfs()'`
45
42
46 * `debugignore` can show file + line number, so a dedicated command could be
43 * `debugignore` can show file + line number, so a dedicated command could be
@@ -181,7 +181,7 b' eh.configitem('
181 b'experimental', b'lfs.disableusercache', default=False,
181 b'experimental', b'lfs.disableusercache', default=False,
182 )
182 )
183 eh.configitem(
183 eh.configitem(
184 b'experimental', b'lfs.worker-enable', default=False,
184 b'experimental', b'lfs.worker-enable', default=True,
185 )
185 )
186
186
187 eh.configitem(
187 eh.configitem(
@@ -17,6 +17,7 b' tell the client to store files elsewhere'
17 $ hg init server
17 $ hg init server
18 $ hg --config "lfs.usercache=$TESTTMP/servercache" \
18 $ hg --config "lfs.usercache=$TESTTMP/servercache" \
19 > --config experimental.lfs.serve=False -R server serve -d \
19 > --config experimental.lfs.serve=False -R server serve -d \
20 > --config experimental.lfs.worker-enable=False \
20 > -p $HGPORT --pid-file=hg.pid -A $TESTTMP/access.log -E $TESTTMP/errors.log
21 > -p $HGPORT --pid-file=hg.pid -A $TESTTMP/access.log -E $TESTTMP/errors.log
21 $ cat hg.pid >> $DAEMON_PIDS
22 $ cat hg.pid >> $DAEMON_PIDS
22
23
@@ -65,6 +65,7 b' missing processor for flag \'0x2000\'!" if'
65 > debugprocessors = $TESTTMP/debugprocessors.py
65 > debugprocessors = $TESTTMP/debugprocessors.py
66 > [experimental]
66 > [experimental]
67 > lfs.disableusercache = True
67 > lfs.disableusercache = True
68 > lfs.worker-enable = False
68 > [lfs]
69 > [lfs]
69 > threshold=10
70 > threshold=10
70 > [web]
71 > [web]
@@ -40,6 +40,8 b''
40 #endif
40 #endif
41
41
42 $ cat >> $HGRCPATH <<EOF
42 $ cat >> $HGRCPATH <<EOF
43 > [experimental]
44 > lfs.worker-enable = False
43 > [extensions]
45 > [extensions]
44 > lfs=
46 > lfs=
45 > [lfs]
47 > [lfs]
General Comments 0
You need to be logged in to leave comments. Login now