Closed nhonnavar closed 8 years ago
Removing the lower/uppercase should not introduce any issues, so it might be a good idea.
@khenderick should be a small one?
Fixed by #982, packaged in openvstorage-2.7.3-rev.4061.083329a
The name is no longer lowercased:
Issue: Created a disk with name “win2008R2” and in the vpool it shows device name as win2008r2.raw, uppercase R changed to lowercase. This is causing an issue when I connect the vdisk on ISCSI target (kernsafe) server as device name of the vdisk is different than name in the GUI.
Possible fix I tried
Removed lower() function at line number 1170 of /opt/OpenvStorage/ovs/lib/vdisk.py
name = name.strip('/').replace(' ', '_').lower()
Does it causes any issue if device name has uppercase+lowercase letter..?