Milan Zamazal has uploaded a new change for review. Change subject: jsonrpc: Return back mistakenly removed line in _serveRequest ......................................................................
jsonrpc: Return back mistakenly removed line in _serveRequest In commit f3ad425, one code line was mistakenly removed, unrelated to the change. This patch returns it back. Change-Id: Ia379837b35a6c2ee8ec234c538b567928463decb Signed-off-by: Milan Zamazal <[email protected]> --- M lib/yajsonrpc/__init__.py 1 file changed, 1 insertion(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/70/59470/1 diff --git a/lib/yajsonrpc/__init__.py b/lib/yajsonrpc/__init__.py index 71db724..976f301 100644 --- a/lib/yajsonrpc/__init__.py +++ b/lib/yajsonrpc/__init__.py @@ -540,6 +540,7 @@ JsonRpcInternalError(str(e)), req.id)) else: + res = True if res is None else res self.log.log(logLevel, "Return '%s' in bridge with %s", req.method, res) if isinstance(res, Suppressed): -- To view, visit https://gerrit.ovirt.org/59470 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ia379837b35a6c2ee8ec234c538b567928463decb Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Milan Zamazal <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/admin/lists/[email protected]
