The eseries/library.py file is importing netapp's
options file. The options file already registers
all of the configuration options. For some reason
the library.py file was re-registering the options
and also properly appending them to the configuration list.
This patch removes the extra register_opts() calls.
Change-Id: Id48fe85acb42c10dc9d13a7fca3f49eec9ea8ce3
closes-bug:
1503405
LOG = logging.getLogger(__name__)
CONF = cfg.CONF
-CONF.register_opts(na_opts.netapp_basicauth_opts)
-CONF.register_opts(na_opts.netapp_connection_opts)
-CONF.register_opts(na_opts.netapp_eseries_opts)
-CONF.register_opts(na_opts.netapp_transport_opts)
-CONF.register_opts(na_opts.netapp_san_opts)
@six.add_metaclass(cinder_utils.TraceWrapperMetaclass)