##// 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 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 41 #. Show to-be-applied rules with `hg files -r 'wdir()' 'set:lfs()'`
45 42
46 43 * `debugignore` can show file + line number, so a dedicated command could be
@@ -181,7 +181,7 b' eh.configitem('
181 181 b'experimental', b'lfs.disableusercache', default=False,
182 182 )
183 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 187 eh.configitem(
@@ -17,6 +17,7 b' tell the client to store files elsewhere'
17 17 $ hg init server
18 18 $ hg --config "lfs.usercache=$TESTTMP/servercache" \
19 19 > --config experimental.lfs.serve=False -R server serve -d \
20 > --config experimental.lfs.worker-enable=False \
20 21 > -p $HGPORT --pid-file=hg.pid -A $TESTTMP/access.log -E $TESTTMP/errors.log
21 22 $ cat hg.pid >> $DAEMON_PIDS
22 23
@@ -65,6 +65,7 b' missing processor for flag \'0x2000\'!" if'
65 65 > debugprocessors = $TESTTMP/debugprocessors.py
66 66 > [experimental]
67 67 > lfs.disableusercache = True
68 > lfs.worker-enable = False
68 69 > [lfs]
69 70 > threshold=10
70 71 > [web]
@@ -40,6 +40,8 b''
40 40 #endif
41 41
42 42 $ cat >> $HGRCPATH <<EOF
43 > [experimental]
44 > lfs.worker-enable = False
43 45 > [extensions]
44 46 > lfs=
45 47 > [lfs]
General Comments 0
You need to be logged in to leave comments. Login now