Merge "Fix pylint error in DotHill drivers"

This commit is contained in:
Zuul 2018-02-09 21:30:59 +00:00 committed by Gerrit Code Review
commit 749bdb6b15

View File

@ -62,6 +62,7 @@ class DotHillISCSIDriver(cinder.volume.driver.ISCSIDriver):
super(DotHillISCSIDriver, self).__init__(*args, **kwargs) super(DotHillISCSIDriver, self).__init__(*args, **kwargs)
self.common = None self.common = None
self.configuration.append_config_values(san.san_opts) self.configuration.append_config_values(san.san_opts)
self.iscsi_ips = None
def _init_common(self): def _init_common(self):
return dothillcommon.DotHillCommon(self.configuration) return dothillcommon.DotHillCommon(self.configuration)