Skip to content

Commit

Permalink
Fix 'undefined symbol conn' error
Browse files Browse the repository at this point in the history
Use self.conn, not conn.

Fixes LP Bug #1188619

Change-Id: Idbd62016fda4cafb6df953ca57af94d56edd3918
  • Loading branch information
dirkmueller committed Jun 7, 2013
1 parent 738dc74 commit 2384c49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cinder/volume/drivers/emc/emc_smis_common.py
Expand Up @@ -1314,7 +1314,7 @@ def get_num_volumes_mapped(self, volume, connector):
'connector': connector,
'ctrl': str(ctrl)})

associators = conn.Associators(
associators = self.conn.Associators(
ctrl,
resultClass='EMC_StorageVolume')

Expand Down

0 comments on commit 2384c49

Please sign in to comment.