Show More
@@ -43,7 +43,8 b' def backgroundrepack(repo, incremental=T' | |||
|
43 | 43 | if packsonly: |
|
44 | 44 | cmd.append('--packsonly') |
|
45 | 45 | repo.ui.warn(msg) |
|
46 | procutil.runbgcommand(cmd, encoding.environ) | |
|
46 | # We know this command will find a binary, so don't block on it starting. | |
|
47 | procutil.runbgcommand(cmd, encoding.environ, ensurestart=False) | |
|
47 | 48 | |
|
48 | 49 | def fullrepack(repo, options=None): |
|
49 | 50 | """If ``packsonly`` is True, stores creating only loose objects are skipped. |
@@ -190,7 +190,9 b' def wraprepo(repo):' | |||
|
190 | 190 | cmd.append('--repack') |
|
191 | 191 | if revs: |
|
192 | 192 | cmd += ['-r', revs] |
|
193 | procutil.runbgcommand(cmd, encoding.environ) | |
|
193 | # We know this command will find a binary, so don't block | |
|
194 | # on it starting. | |
|
195 | procutil.runbgcommand(cmd, encoding.environ, ensurestart=False) | |
|
194 | 196 | |
|
195 | 197 | def prefetch(self, revs, base=None, pats=None, opts=None): |
|
196 | 198 | """Prefetches all the necessary file revisions for the given revs |
General Comments 0
You need to be logged in to leave comments.
Login now