Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cinder/volume/drivers/hpe/hpe_3par_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -2659,8 +2659,8 @@ def create_cloned_volume(self, volume, src_vref):
LOG.info("array version: %(ver)s",
{'ver': self.API_VERSION})
comment_line = None
if self.API_VERSION >= 40600000:
# comment can be added
if self.API_VERSION >= 40600000 and self.API_VERSION < API_VERSION_2023:
# comment added for online copy only for Alletra9k version
comments = {'volume_id': volume['id'],
'name': volume['name'],
'type': 'OpenStack'}
Expand Down