Enis Afgan 8 лет назад
Родитель
Сommit
27828814d7
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      cloudbridge/cloud/providers/gce/resources.py

+ 1 - 1
cloudbridge/cloud/providers/gce/resources.py

@@ -119,7 +119,7 @@ class GCEVMType(BaseVMType):
 
     @property
     def ram(self):
-        return self._inst_dict.get('memoryMb')
+        return float("{0:.2f}".format(self._inst_dict.get('memoryMb') / 1024))
 
     @property
     def size_root_disk(self):