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
This commit is contained in:
Ivan Kolodyazhny 2018-10-31 15:27:50 +02:00
parent 0a62253ee9
commit 8d710fc861
1 changed files with 0 additions and 8 deletions

View File

@ -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")