1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[vsphere] check for string true/false instead of boolean

closes #2857
This commit is contained in:
geemus 2014-04-17 08:40:31 -05:00
parent 86edde28e1
commit 6d2c2d0575

View file

@ -134,7 +134,7 @@ module Fog
)
}
if operation == :add && disk.thin == false && disk.eager_zero
if operation == :add && disk.thin == 'false' && disk.eager_zero == 'true'
payload[:device][:backing][:eagerlyScrub] = disk.eager_zero
end