Remove deprecated 'nas_ip' config option

'nas_ip' was deprecated during Liberty and now it's safe to be removed.

Change-Id: I6fc27f8df7b5bb4d045cfdad7a6d6a96775d43b7
This commit is contained in:
Ivan Kolodyazhny 2017-12-15 16:40:57 +02:00
parent 4a92c2ec8e
commit d3d53eeb84
2 changed files with 6 additions and 2 deletions

View File

@ -48,8 +48,7 @@ LOG = logging.getLogger(__name__)
nas_opts = [ nas_opts = [
cfg.StrOpt('nas_host', cfg.StrOpt('nas_host',
default='', default='',
help='IP address or Hostname of NAS system.', help='IP address or Hostname of NAS system.'),
deprecated_name='nas_ip'),
cfg.StrOpt('nas_login', cfg.StrOpt('nas_login',
default='admin', default='admin',
help='User name to connect to NAS system.'), help='User name to connect to NAS system.'),

View File

@ -0,0 +1,5 @@
---
upgrade:
- |
The old deprecated ``nas_ip`` option has been removed.
Use the ``nas_host`` instead of it.