diff --git a/pkg/compute/models/hosts.go b/pkg/compute/models/hosts.go index dd6d3088e3..6ec584e937 100644 --- a/pkg/compute/models/hosts.go +++ b/pkg/compute/models/hosts.go @@ -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 {