Merge "Print warning on authentication error"

This commit is contained in:
Jenkins 2015-04-18 05:27:26 +00:00 committed by Gerrit Code Review
commit fbb7641694

View File

@ -280,7 +280,8 @@ class OpenStackShell(app.App):
try:
# Trigger the Identity client to initialize
self.client_manager.auth_ref
except Exception:
except Exception as e:
self.log.warning("Possible error authenticating: " + str(e))
pass
return