From 523f0d6713b8446d6fab2044f7fd7acab18679ae Mon Sep 17 00:00:00 2001 From: Thomas Goirand Date: Wed, 27 Apr 2016 17:35:27 -0500 Subject: [PATCH] Fix tempest.conf generation [service_available] isn't being generated. This patch fixes it. Change-Id: I9078947dda48fcae96312c6886b0a674277b8bad Co-Author: Matthew Treinish (cherry picked from commit d8bc03057247d5278d14482f5511d4b9535a0f37) --- manila_tempest_tests/plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manila_tempest_tests/plugin.py b/manila_tempest_tests/plugin.py index 4880940b40..02c3c989bb 100644 --- a/manila_tempest_tests/plugin.py +++ b/manila_tempest_tests/plugin.py @@ -47,4 +47,5 @@ class ManilaTempestPlugin(plugins.TempestPlugin): ) def get_opt_lists(self): - return [(config_share.share_group.name, config_share.ShareGroup)] + return [(config_share.share_group.name, config_share.ShareGroup), + ('service_available', config_share.ServiceAvailableGroup)]