Merge "Add direct_use=False flag to constructor of novaclient"

This commit is contained in:
Jenkins 2016-07-18 14:38:21 +00:00 committed by Gerrit Code Review
commit db277d033c

View File

@ -40,7 +40,7 @@ class FakeClient(fakes.FakeClient, Client):
def __init__(self, *args, **kwargs):
super(FakeClient, self).__init__('username', 'password', 'project_id',
'auth_url')
'auth_url', direct_use=False)
self.client = FakeHTTPClient(**kwargs)