Merge pull request #2326 from ioito/hotfix/qx-azure-snapshot-disk-id

fix: azure快照的磁盘id应该小写
This commit is contained in:
yunion-ci-robot
2019-08-16 16:27:04 +08:00
committed by GitHub
+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 {