fix(region): sku cpu mem sync (#23649)

This commit is contained in:
屈轩
2025-10-30 22:33:39 +08:00
committed by GitHub
parent 1c61483bc1
commit 5fc5c5b330

View File

@@ -1260,6 +1260,8 @@ func (self *SServerSku) syncWithCloudSku(ctx context.Context, userCred mcclient.
self.GpuAttachable = sku.GpuAttachable
self.GpuSpec = sku.GpuSpec
self.GpuCount = sku.GpuCount
self.CpuCoreCount = sku.CpuCoreCount
self.MemorySizeMB = sku.MemorySizeMB
self.Md5 = sku.Md5
return nil
})