Piotr Kliczewski has uploaded a new change for review.

Change subject: jsonrpc: ignore not needed transport
......................................................................

jsonrpc: ignore not needed transport


Change-Id: Icecf5c06e216151bd95f56f6fef9ed9ccba9074d
Signed-off-by: pkliczew <[email protected]>
---
M lib/yajsonrpc/__init__.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/73/40173/1

diff --git a/lib/yajsonrpc/__init__.py b/lib/yajsonrpc/__init__.py
index e1c7848..5704a42 100644
--- a/lib/yajsonrpc/__init__.py
+++ b/lib/yajsonrpc/__init__.py
@@ -360,7 +360,7 @@
                 return ("result" in obj or "error" in obj)
 
     def _handleMessage(self, req):
-        transport, message = req
+        _, message = req
         try:
             mobj = json.loads(message)
             isResponse = self._isResponse(mobj)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icecf5c06e216151bd95f56f6fef9ed9ccba9074d
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Piotr Kliczewski <[email protected]>
_______________________________________________
vdsm-patches mailing list
[email protected]
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches

Reply via email to