updating the config and usage
The config options were improperly specified and utilized.
Also, a needless decorator that is a carry over from
integrated work was removed.
Change-Id: Ieb39c8c4baada8857cc297cc98897d71f0536716
diff --git a/tempest_horizon/config.py b/tempest_horizon/config.py
index 7866d0b..a66ab86 100644
--- a/tempest_horizon/config.py
+++ b/tempest_horizon/config.py
@@ -25,6 +25,15 @@
deprecated_for_removal=True),
]
-service_opt = cfg.BoolOpt(
- 'horizon', default=True,
- help="Whether or not Horizon is expected to be available")
+#service_opt = cfg.BoolOpt(
+# 'horizon', default=True,
+# help="Whether or not Horizon is expected to be available")
+#
+service_available_group = cfg.OptGroup(name="service_available",
+ title="Available OpenStack Services")
+
+ServiceAvailableGroup = [
+ cfg.BoolOpt('horizon',
+ default=True,
+ help="Whether or not Horizon is expected to be available"),
+]