hgext/remotefilelog/repack.py
changeset 42512 df1419c5756a
parent 42057 566daffc607d
child 42852 2c74337e6483
--- a/hgext/remotefilelog/repack.py	Tue Jun 18 09:43:27 2019 -0400
+++ b/hgext/remotefilelog/repack.py	Tue Jun 18 09:57:06 2019 -0400
@@ -43,7 +43,8 @@
     if packsonly:
         cmd.append('--packsonly')
     repo.ui.warn(msg)
-    procutil.runbgcommand(cmd, encoding.environ)
+    # We know this command will find a binary, so don't block on it starting.
+    procutil.runbgcommand(cmd, encoding.environ, ensurestart=False)
 
 def fullrepack(repo, options=None):
     """If ``packsonly`` is True, stores creating only loose objects are skipped.