Yaniv Bronhaim has uploaded a new change for review.

Change subject: Fix in hawkular provider
......................................................................

Fix in hawkular provider

Passing wrong parameters to concurrent.thread.

Change-Id: Ie9a16a0a52b2df2028134999a075808eebfe8c2d
Signed-off-by: Yaniv Bronhaim <[email protected]>
---
M lib/vdsm/metrics/hawkular.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/55/62355/1

diff --git a/lib/vdsm/metrics/hawkular.py b/lib/vdsm/metrics/hawkular.py
index 587aa00..10871bb 100644
--- a/lib/vdsm/metrics/hawkular.py
+++ b/lib/vdsm/metrics/hawkular.py
@@ -41,7 +41,7 @@
     if _running:
         raise RuntimeError('trying to start reporter while running')
     logging.info("Starting hawkular reporter")
-    concurrent.thread(_run, name='hawkular', address=address).start()
+    concurrent.thread(_run, name='hawkular', args=(address,)).start()
     _running = True
 
 


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

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

Reply via email to