Hi there,
in the cm_storage Create volume workflow, the QosPolicyGroup setting is not working. I took a look, and I see that there is a bug in the code. The code for this command checks to make sure the storage system is 8.2.0 or higher, but it does it incorrectly...it has this for the check:
if ($versionComparisionValue -le 0 )
It should have this for the check, which is done correctly in the Modify volume command code:
| if ( $versionCompareValue -ge 0 ) |
Mike