Nir Soffer has uploaded a new change for review.

Change subject: check: Rename check event loop thread
......................................................................

check: Rename check event loop thread

Until now, the check event loop thread was named "Thread-12", now it is
named "check/loop".

Change-Id: I927659479d3be888d2e38bd30c6c13e924b2745f
Signed-off-by: Nir Soffer <[email protected]>
---
M lib/vdsm/storage/check.py
1 file changed, 2 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/22/63522/1

diff --git a/lib/vdsm/storage/check.py b/lib/vdsm/storage/check.py
index 7b35ae4..87a7b9f 100644
--- a/lib/vdsm/storage/check.py
+++ b/lib/vdsm/storage/check.py
@@ -80,7 +80,8 @@
     def __init__(self):
         self._lock = threading.Lock()
         self._loop = asyncevent.EventLoop()
-        self._thread = concurrent.thread(self._loop.run_forever)
+        self._thread = concurrent.thread(self._loop.run_forever,
+                                         name="check/loop")
         self._checkers = {}
 
     def start(self):


-- 
To view, visit https://gerrit.ovirt.org/63522
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I927659479d3be888d2e38bd30c6c13e924b2745f
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Nir Soffer <[email protected]>
_______________________________________________
vdsm-patches mailing list
[email protected]
https://lists.fedorahosted.org/admin/lists/[email protected]

Reply via email to