Merge "HPMSA fix access to common options"

This commit is contained in:
Jenkins 2015-09-11 22:37:31 +00:00 committed by Gerrit Code Review
commit b853479462
2 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ class HPMSAFCDriver(dothill_fc.DotHillFCDriver):
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)

View File

@ -30,8 +30,8 @@ class HPMSAISCSIDriver(dothill_iscsi.DotHillISCSIDriver):
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):