Add workaround for Bug#1707303 for testing

Unfortunately, there's a bug in the released manila-client that's
been fixed in master, but not yet released.  This patch works around
that bug.

Change-Id: Idd74ceb3e1c7640241550cb104f9e93d4f782d80
Related-Bug: #1707303
This commit is contained in:
Alex Kavanagh 2017-08-21 10:58:15 +01:00
parent 9d95797712
commit 2ad8c79efd
1 changed files with 2 additions and 1 deletions

View File

@ -268,5 +268,6 @@ class ManilaGenericBasicDeployment(OpenStackAmuletDeployment):
manila = manila_client.Client(session=self.keystone_demo.session,
endpoint=manila_ep)
# now just try a list the shares
manila.shares.list()
# NOTE(AJK) the 'search_opts={}' is needed to work around Bug#1707303
manila.shares.list(search_opts={})
u.log.debug('OK')