2
0
mirror of https://opendev.org/x/pyghmi synced 2025-07-04 11:45:39 +00:00

Merge "Better error message on unsupported media"

This commit is contained in:
Zuul
2018-02-26 17:02:23 +00:00
committed by Gerrit Code Review

View File

@ -867,7 +867,9 @@ class XCCClient(IMMClient):
rq['Protocol'] = 7
rq['Url'] = url
else:
raise Exception('TODO')
raise pygexc.UnsupportedFunctionality(
'{0} scheme is not supported on this system or '
'invalid url format')
rt = self.wc.grab_json_response('/api/providers/rp_vm_remote_connect',
json.dumps(rq))
if 'return' not in rt or rt['return'] != 0: