Comment 4 for bug 1012502

Revision history for this message
Harsh Prasad (prasad-tanay) wrote :

Oh.. Cool.. Will check that out. And btw i ran it successfully by making few minor changes to quantum/plugins/cisco/client/cli.py and quantumclient/__init__.py.

Changes made are as following:

to quantum/plugins/cisco/client/cli.py in def main(): + global HOST
                                                                                                + global PORT
                                                                                                + global USE_SSL

to quantumclient/__init__.py in def __init__() of class Client:

+ action_prefix="/v1.1/tenants/{tenant_id}", ## In the arguments of __init__()
+ self.action_prefix = action_prefix#"/v%s%s" % (version, uri_prefix)

After these changes, the cisco client was working. Do tell if such changes should not be made.