Fix tempest.conf generation

[service_available] isn't being generated. This patch fixes it.

Closes-Bug: #1613542
Change-Id: Ic1ef8f2f9c4e79e0ee35e2e78311d96d00f014e8
This commit is contained in:
Thomas Bechtold 2016-08-15 17:44:50 +02:00
parent e37ea551e9
commit f2b6064d7f
1 changed files with 5 additions and 2 deletions

View File

@ -40,5 +40,8 @@ class CeilometerTempestPlugin(plugins.TempestPlugin):
tempest_config.TelemetryGroup)
def get_opt_lists(self):
return [(tempest_config.telemetry_group.name,
tempest_config.TelemetryGroup)]
return [
(tempest_config.telemetry_group.name,
tempest_config.TelemetryGroup),
('service_available', tempest_config.ServiceAvailableGroup)
]