Merge "Bring RESTApi closer to ithe imminent keystoneclient.Session"

This commit is contained in:
Jenkins
2013-12-06 22:48:29 +00:00
committed by Gerrit Code Review
7 changed files with 435 additions and 238 deletions

@ -405,7 +405,10 @@ class OpenStackShell(app.App):
self.verify = self.options.os_cacert
else:
self.verify = not self.options.insecure
self.restapi = restapi.RESTApi(verify=self.verify)
self.restapi = restapi.RESTApi(
verify=self.verify,
debug=self.options.debug,
)
def prepare_to_run_command(self, cmd):
"""Set up auth and API versions"""