1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

feature #2911-b: Rename MEMORY to MEM

This commit is contained in:
Daniel Molina 2014-09-30 16:04:33 +02:00
parent 47b01cfba3
commit f05a24cdd9

View File

@ -362,9 +362,9 @@ class VCenterHost < ::OpenNebula::Host
host_info << "MAX_CPU=" << total_cpu.to_s << ","
host_info << "USED_CPU=" << used_cpu.to_s << ","
host_info << "FREE_CPU=" << free_cpu.to_s << ","
host_info << "MAX_MEMORY=" << total_memory.to_s << ","
host_info << "USED_MEMORY=" << used_memory.to_s << ","
host_info << "FREE_MEMORY=" << free_memory.to_s
host_info << "MAX_MEM=" << total_memory.to_s << ","
host_info << "USED_MEM=" << used_memory.to_s << ","
host_info << "FREE_MEM=" << free_memory.to_s
host_info << "]"
}