From 8d710fc861567c4d150cb35dcacd353a16cbf41a Mon Sep 17 00:00:00 2001 From: Ivan Kolodyazhny Date: Wed, 31 Oct 2018 15:27:50 +0200 Subject: [PATCH] Remove deprecated and unused 'login_url' config option This opiton was deprecated more than three years ago so it's safe to remove it. Change-Id: Id65e439871c800068e26797781365b3cd749642d --- tempest_horizon/config.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tempest_horizon/config.py b/tempest_horizon/config.py index 1e29aed..205eeaa 100644 --- a/tempest_horizon/config.py +++ b/tempest_horizon/config.py @@ -19,19 +19,11 @@ DashboardGroup = [ cfg.StrOpt('dashboard_url', default='http://localhost/', help="Where the dashboard can be found"), - cfg.StrOpt('login_url', - default='http://localhost/auth/login/', - help="Login page for the dashboard", - deprecated_for_removal=True), cfg.BoolOpt('disable_ssl_certificate_validation', default=False, help="Set to True if using self-signed SSL certificates."), ] -# 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")