diff options
author | Kaifeng Wang <kaifeng.w@gmail.com> | 2020-05-01 14:10:34 +0800 |
---|---|---|
committer | Kaifeng Wang <kaifeng.w@gmail.com> | 2020-05-01 07:39:21 +0000 |
commit | 3e6dfdb3b9305d62211aa460f045450c26720555 (patch) | |
tree | c1ce34a968d87604ece0830fcb47dbb7f50880e1 /ironic/conf/conductor.py | |
parent | 1bb5e80ae4be54837cdca84f6bfbe180a79f37b2 (diff) | |
download | ironic-3e6dfdb3b9305d62211aa460f045450c26720555.tar.gz |
Remove [conductor]api_url
It was deprecated long before.
Change-Id: I05d8a90dbf6e92ef230b1a9624c6816fc96c6a7f
Diffstat (limited to 'ironic/conf/conductor.py')
-rw-r--r-- | ironic/conf/conductor.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/ironic/conf/conductor.py b/ironic/conf/conductor.py index da98678a6..1843f74cc 100644 --- a/ironic/conf/conductor.py +++ b/ironic/conf/conductor.py @@ -30,17 +30,6 @@ opts = [ cfg.IntOpt('heartbeat_interval', default=10, help=_('Seconds between conductor heart beats.')), - cfg.URIOpt('api_url', - schemes=('http', 'https'), - deprecated_for_removal=True, - deprecated_reason=_("Use [service_catalog]endpoint_override " - "option instead if required to use " - "a specific ironic api address, " - "for example in noauth mode."), - help=_('URL of Ironic API service. If not set ironic can ' - 'get the current value from the keystone service ' - 'catalog. If set, the value must start with either ' - 'http:// or https://.')), cfg.IntOpt('heartbeat_timeout', default=60, # We're using timedelta which can overflow if somebody sets this |