mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
use constant for GB.
This commit is contained in:
parent
ade48885ea
commit
8a8b7e81b9
1 changed files with 2 additions and 2 deletions
|
@ -2,10 +2,10 @@ module Fog
|
|||
module Compute
|
||||
class Ovirt
|
||||
class Real
|
||||
|
||||
DISK_SIZE_TO_GB = 1073741824
|
||||
def add_volume(id, options = {})
|
||||
raise ArgumentError, "instance id is a required parameter" unless id
|
||||
options[:size]=options[:size_gb].to_i*1073741824 if options[:size_gb]
|
||||
options[:size]=options[:size_gb].to_i*DISK_SIZE_TO_GB if options[:size_gb]
|
||||
client.add_volume(id, options)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue