D7260: vfs: another bytes-str confusion on thread name

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Thu Nov 7 03:31:17 EST 2019


Closed by commit rHGffd632c224c3: vfs: another bytes-str confusion on thread name (authored by durin42).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7260?vs=17630&id=17677

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7260/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7260

AFFECTED FILES
  mercurial/vfs.py

CHANGE DETAILS

diff --git a/mercurial/vfs.py b/mercurial/vfs.py
--- a/mercurial/vfs.py
+++ b/mercurial/vfs.py
@@ -649,7 +649,7 @@
         self._running = True
 
         for i in range(threadcount):
-            t = threading.Thread(target=self._worker, name=b'backgroundcloser')
+            t = threading.Thread(target=self._worker, name='backgroundcloser')
             self._threads.append(t)
             t.start()
 



To: durin42, #hg-reviewers, indygreg
Cc: mercurial-devel


More information about the Mercurial-devel mailing list