Merge pull request #5447 from zexi/hotfix/host-storage-update-enabled

region: host update storage set enabled
This commit is contained in:
Zexi Li
2020-03-11 15:58:58 +08:00
committed by GitHub
+2
View File
@@ -817,6 +817,7 @@ func (self *SHost) PerformUpdateStorage(
storage.MediumType = self.StorageType
storage.Cmtbound = 1.0
storage.Status = api.STORAGE_ONLINE
storage.Enabled = tristate.True
storage.ZoneId = zoneId
storage.StoragecacheId = storageCacheId
err := StorageManager.TableSpec().Insert(&storage)
@@ -844,6 +845,7 @@ func (self *SHost) PerformUpdateStorage(
diff, err := db.Update(storage, func() error {
storage.Capacity = capacity
storage.StoragecacheId = storageCacheId
storage.Enabled = tristate.True
return nil
})
if err != nil {