Преглед изворни кода

Return instance RAM in GB, per #115

Enis Afgan пре 8 година
родитељ
комит
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):