fix: azure快照的磁盘id应该小写

This commit is contained in:
ioito
2019-08-16 15:50:33 +08:00
parent 830f0baef3
commit 069ff2e893
+1 -1
View File
@@ -180,7 +180,7 @@ func (self *SRegion) GetISnapshots() ([]cloudprovider.ICloudSnapshot, error) {
}
func (self *SSnapshot) GetDiskId() string {
return self.Properties.CreationData.SourceResourceID
return strings.ToLower(self.Properties.CreationData.SourceResourceID)
}
func (self *SSnapshot) GetDiskType() string {