This patch fixes access to the options defined in
hpmsa_common. They were recently renamed from common_opt
to common_opts, but the drivers weren't updated.
Change-Id: I381e61c8e44454f29bc6ff6f1a5a82bbc8ab9436
Partial-Bug:
1494877
def __init__(self, *args, **kwargs):
super(HPMSAFCDriver, self).__init__(*args, **kwargs)
- self.configuration.append_config_values(hpmsa_common.common_opt)
+ self.configuration.append_config_values(hpmsa_common.common_opts)
def _init_common(self):
return hpmsa_common.HPMSACommon(self.configuration)
def __init__(self, *args, **kwargs):
super(HPMSAISCSIDriver, self).__init__(*args, **kwargs)
- self.configuration.append_config_values(hpmsa_common.common_opt)
- self.configuration.append_config_values(hpmsa_common.iscsi_opt)
+ self.configuration.append_config_values(hpmsa_common.common_opts)
+ self.configuration.append_config_values(hpmsa_common.iscsi_opts)
self.iscsi_ips = self.configuration.hpmsa_iscsi_ips
def _init_common(self):